@import url(../dark/scss/icons/material-design-iconic-font/css/materialdesignicons.min.css);
@import url('https://fonts.googleapis.com/css?family=Roboto');

body {
	width: 100%;
	height: 100vh;
	background-color: #212121;
}


/* BASIC */

a {
  color: #92badd;
  display:inline-block;
  text-decoration: none;
  font-weight: 400;
}

/* STRUCTURE */

.wrapper {
	font-family: 'Roboto', sans-serif;
  	display: flex;
  	align-items: center;
  	flex-direction: column; 
  	justify-content: center;
  	width: 100%;
  	min-height: 100%;
  	padding: 20px;
}

#formHeader {
	background-color: #282828;
  	padding: 0 25px 25px 25px;
  	text-align: center;
  	-webkit-border-radius: 10px 10px 0 0;
  	border-radius: 10px 10px 0 0;
}

#formContent {
	-webkit-border-radius: 10px 10px 10px 10px;
	border-radius: 10px 10px 10px 10px;
	background: #282828;
	padding: 30px;
	width: 90%;
	max-width: 540px;
	position: relative;
	-webkit-box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3);
	box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3);
	text-align: center;
}

#formFooter {
	background-color: #303030;
	border-top: 1px solid #404040;
	padding: 25px;
	text-align: center;
	-webkit-border-radius: 0 0 10px 10px;
	border-radius: 0 0 10px 10px;
}

input[type=email], input[type=password] {
	background-color: #343434;
	border: none;
	color: silver;
	padding: 10px 15px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 18px;
	margin: 5px;
	width: 85%;
	border: 2px solid #343434;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	-webkit-border-radius: 5px 5px 5px 5px;
	border-radius: 5px 5px 5px 5px;
}

input[type=email]:focus, input[type=password]:focus {
	background-color: #282828;
	border-bottom: 2px solid #009797;
}

input[type=email]:placeholder, input[type=password]:placeholder {
	color: #cccccc;
}



/* ANIMATIONS */

/* Simple CSS3 Fade-in-down Animation */
.fadeInDown {
	-webkit-animation-name: fadeInDown;
	animation-name: fadeInDown;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

@-webkit-keyframes fadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}
	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes fadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}
	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

/* Simple CSS3 Fade-in Animation */
@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

.fadeIn {
	opacity:0;
	-webkit-animation:fadeIn ease-in 1;
	-moz-animation:fadeIn ease-in 1;
	animation:fadeIn ease-in 1;

	-webkit-animation-fill-mode:forwards;
	-moz-animation-fill-mode:forwards;
	animation-fill-mode:forwards;

	-webkit-animation-duration:1s;
	-moz-animation-duration:1s;
	animation-duration:1s;
}

.fadeIn.first {
	-webkit-animation-delay: 0.4s;
	-moz-animation-delay: 0.4s;
	animation-delay: 0.4s;
}

.fadeIn.second {
	-webkit-animation-delay: 0.6s;
	-moz-animation-delay: 0.6s;
	animation-delay: 0.6s;
}

.fadeIn.third {
	-webkit-animation-delay: 0.8s;
	-moz-animation-delay: 0.8s;
	animation-delay: 0.8s;
}

.fadeIn.fourth {
	-webkit-animation-delay: 1s;
	-moz-animation-delay: 1s;
	animation-delay: 1s;
}

*:focus {
    outline: none;
} 

.dark_logo {
    width: 70px;
    height: 50px;
    color: teal;
    font-weight: bolder;
    font-size: 49px;
}

.dark_brand {
    width: 148px;
    height: 50px;
    display: inline-block;
    text-align: left;
    font-weight: bolder;
    font-size: 49px;
}

.dark_brand_white {
  color: silver;
}

.dark_brand_grey {
  color: #949696;
}

#submit {
	background-color: #009797;
	border-color: #009797;
	margin: 25px 5px;
	width: 85%;

}

#submit:hover {
	background-color: #008181;
}

#submit:focus {
	border-color: #009797;
}

.btn-success:hover {
	color: #fff;
	background-color: #007070;
	border-color: #009797;
}

.btn-success:focus, .btn-success.focus {
	-webkit-box-shadow: 0 0 0 0.2rem rgba(0, 188, 140, 0.5);
	box-shadow: 0 0 0 0.2rem rgba(0, 188, 140, 0.5);
}

.btn-success.disabled, .btn-success:disabled {
	background-color: #009797;
	border-color: #009797;
}

.forgotlink {
	color: #009797;
	font-size: 1.1em;
}

.forgotlink:hover {
	text-decoration: none;
	color: silver;
}

.forgotTxt p{
	width: 85%;
	color: #BAAB90;
	font-size: 0.9em;
}

.errorCard {
	background-color: #272727;
	color: teal;
	margin-top: 50px;
	min-width: 370px;
}

.passupdate {
	background-color: #272727;
	height: 100vh;
}

.form-control-feedback {
	color: #ff3131;
    font-size: larger;
    font-weight: 500;
	
}

#setpassw{
	margin-bottom: 20px;
}

#msglogo{
  font-size: 3.5rem;
  min-height: 75px;
}

.blinklogo {
	color: orange;
}