@import url('https://fonts.googleapis.com/css?family=Poppins');

body {
  height: 100%;
  width: 100%;
  background-color: #102944;
  background-size: cover;
}

table {
  border-collapse: separate;
  border-spacing: 5px 0;
  margin: 0;
  padding: 0;
}

.login-container {
  width: 100%;
  height: 100%;
  -webkit-border-radius: 10px 10px 10px 10px;
  border-radius: 10px 10px 10px 10px;
  background: #fff;
  padding: 30px;
  width: 90%;
  max-width: 450px;
  position: relative;
  padding: 0px;
  -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;
  /* new features */
  display: flex;
  margin: 20px auto;
}

.login {
  margin: 20px auto;
  width: 300px;
}

.login h1 {
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  letter-spacing: 1px;
  text-align: center;
}

input {
  width: 150%;
  margin-bottom: 10px;
  margin-top: 10px;
  background-color: #f6f6f6;
  outline: none;
  padding: 10px;
  font-size: 13px;
  color: #0d0d0d;
  text-decoration: none;
  border: 2px solid #f6f6f6;
  border-radius: 4px;
  box-shadow: inset 0 -5px 45px rgb(238, 238, 238), 0 1px 1px rgba(255, 255, 255, 0.386);
  -webkit-transition: box-shadow .5s ease;
  -moz-transition: box-shadow .5s ease;
  -o-transition: box-shadow .5s ease;
  transition: box-shadow .5s ease;
  border-radius: 5px 5px 5px 5px;
}

input:focus {
  box-shadow: inset 0 -5px 45px rgba(100, 100, 100, 0.4), 0 1px 1px rgba(255, 255, 255, 0.2);
}

a:hover {

  text-decoration: none;
}

.red {
  color: red;
}

#register {
  color: dodgerblue;
}

#forgot-password, #faq {
  color: dodgerblue;
}

#logo img {
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.wrapper {
  display: flex;
  align-items: center;
  flex-direction: column; 
  width: 100%;
  min-height: 100%;
  padding: 20px;
}

#formFooter {
  background-color: #f6f6f6;
  border-top: 1px solid #dce8f1;
  padding: 25px;
  text-align: center;
  -webkit-border-radius: 0 0 10px 10px;
  border-radius: 0 0 10px 10px;
}

.underlineHover:after {
  display: block;
  left: 0;
  bottom: -10px;
  width: 0;
  height: 2px;
  background-color: #56baed;
  content: "";
  transition: width 0.2s;
}

.underlineHover:hover {
  color: #0d0d0d;
}

.underlineHover:hover:after{
  width: 100%;
}

input[type=submit] {
  background-color: #56baed;
  border: none;
  color: white;
  width: 85%;
  padding: 15px 80px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  font-size: 13px;
  -webkit-box-shadow: 0  10px 30px 0 rgba(95,186,233,0.4);
  box-shadow: 0 10px 30px 0 rgba(95,186,233,0.4);
  -webkit-border-radius: 5px 5px 5px 5px;
  border-radius: 5px 5px 5px 5px;
  margin: 5px 20px 40px 20px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

input[type=button]{
  background-color: white;
  border: oldlace; 
  color: white;
  width: 85%;
  padding: 15px 80px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  font-size: 13px;
  -webkit-border-radius: 5px 5px 5px 5px;
  border-radius: 5px 5px 5px 5px;
  margin: 5px 20px 40px 20px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

input[type=button]:hover  {
  background-color: #f0f0f0;
}

input[type=submit]:hover, input[type=reset]:hover  {
  background-color: #39ace7;
}

input[type=button]:active, input[type=submit]:active, input[type=reset]:active  {
  -moz-transform: scale(0.95);
  -webkit-transform: scale(0.95);
  -o-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
}
