/*
Login / Register
*/
::-moz-selection {
	background: #FC857E;
	color: white;
}

::selection {
	background: #FC857E;
	color: white;
}

html, body {
  background: #28272C;
  /*font-family: Roboto, Helvetica, Arial, sans-serif;*/
  font-family: 'Montserrat', sans-serif;
  padding: 0;
  margin: 0;
}

.btn:hover,
.btn:focus,
.btn:active {
  box-shadow: none;
}

.text-danger {
  color: #FF635A;
  font-weight: 500;
  margin: 0 0 20px 0;
}

/* LOGIN */

#login {
  width: 640px;
  background: white;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
	border-radius: 5px;
}

/* Correction height too large */
.signup {
  top: 30px!important; left: 50%!important;
  transform: translateX(-50%)!important;
}

#login-form {
  text-align: center;
  box-shadow: -25px 0 60px #28272C;
}

#login-form form {
  margin: 0;
}


#login-form h1 {
  font-size: 40px;
  font-weight: 700;
  padding-top: 40px;
  margin: 0 0 40px 0;
  color: #28272C;
}

#login-form #first-name {
  padding-left: 27px;
  padding-right: 0;
}

#login-form #last-name {
  padding-left: 0;
  padding-right: 27px;
}

#login-form fieldset {
  margin-top: 40px;
}

#login-form label {
  margin: 10px 0 4px 0;
  display: block;
  color: #666;
}

#login-form input {
  width: 85%;
	height: 50px;
  background: #e4e4e4;
	border: none;
  border-radius: 5px;
  font-size: 18px;
  padding: 10px 16px;
  margin: 0 auto;
  box-shadow: 0 1px 1px 0px #cdcdcd inset;
  transition: all 0.2s;
  text-align: center;
}


#login-form input:focus {
  border: 2px solid #FF635A;
}


#login-form .btn > button {
	border-radius: 5px;
	background: #FF4D40;
	border: 2px solid #FF4D40;
	transition: background 0.3s;
  padding: 15px 90px;
  color: white;
  font-weight: 600;
  font-size: 16px;
  float: left;
  margin: 0 0 20px 0;
}

#login-form .btn > button:hover,
#login-form .btn > button:focus,
#login-form .btn > button:active {
	background: white;
	color: #FF4D40;
	border: 2px solid #FF4D40;
  cursor: pointer;
  box-shadow: none;
}

/* SIGN UP REDIRECT */
#redirect-to-signup {
  width: 100%;
  background: #E4E4E4;
  height: 105px;
  text-align: center;
  padding: 0 25px;
  position: relative;
}

#redirect-to-signup h2 {
    font-size: 30px;
    text-transform: capitalize;
    font-weight: 500;
    margin: 90px 0 40px 0;
    color: #28272C;
}

#redirect-to-signup p {
  font-size: 14px;
  float: left;
  margin: 35px 0;
  text-align: center;
	width: 320px;
}
#redirect-to-signup p > a {
  color: #666;
	text-decoration: none;
}


#redirect-to-signup a.btn {
    border-radius: 5px;
    border: 2px solid #FF4D40;
    transition: background .2s;
    padding: 15px 30px;
    color: black;
    font-weight: 400;
    font-size: 14px;
    float: left;
    margin: 25px 70px 40px 0;
    text-decoration: none;
    float: right;
}

#redirect-to-signup a.btn:hover,
#redirect-to-signup a.btn:focus,
#redirect-to-signup a.btn:active {
  background: #FF4D40;
  color: white;
}

/* SSO REDIRECT */
#redirect-to-sso {
  width: 100%;
  background: #E4E4E4;
  height: 105px;
  text-align: center;
  padding: 0 25px;
  position: relative;
}

#redirect-to-sso h2 {
    font-size: 30px;
    text-transform: capitalize;
    font-weight: 500;
    margin: 90px 0 40px 0;
    color: #28272C;
}

#redirect-to-sso p {
  font-size: 14px;
  float: left;
  margin: 35px 0;
  text-align: center;
	width: 320px;
}
#redirect-to-sso p > a {
  color: #666;
	text-decoration: none;
}


#redirect-to-sso a.btn {
    border-radius: 5px;
    border: 2px solid #FF4D40;
    transition: background .2s;
    padding: 15px 30px;
    color: black;
    font-weight: 400;
    font-size: 14px;
    float: left;
    margin-right: 70px;
    text-decoration: none;
    float: right;
}

#redirect-to-sso a.btn:hover,
#redirect-to-sso a.btn:focus,
#redirect-to-sso a.btn:active {
  background: #FF4D40;
  color: white;
}

/* DECORATEUR */
#wrapper {
  width: 0;
  height: 0;
  border-top: 500px solid #FF4D40;
  border-right: 500px solid transparent;
}

/* MEDIA DISPLAY */
@media screen and (max-width: 650px) {
	#wrapper {
		border-top: 200px solid #FF635A;
		border-right: 200px solid transparent;
	}
  #login {
		width: 100%;
		border-radius: 0;
	}
	#redirect-to-signup {
		height: 180px;
	}
	#redirect-to-signup p {
	  text-align: center;
		width: 100%;
	}
	#redirect-to-signup a.btn {
	  display: block;
		position: absolute;
		top: 75px; left: 50%;
		transform: translateX(-50%);
	}

}
