* {
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Open Sans', sans-serif;
}
.content {
  background-color: #d3e4f2;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
}
.login-content {
  background-color: #fff;
  align-self: center;
  width: 400px;
  height: 500px;
  box-shadow: 0 4px 7px 0 rgba(0, 0, 0, .55);
}
/* Full-width inputs */
input[type=text], input[type=password] {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  box-sizing: border-box;
  background-color: #dedede;
  font-size: 15px;
}
/* Set a style for all buttons */
button {
  background-color: #4CAF50;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  cursor: pointer;
  width: 100%;
}
/* Add a hover effect for buttons */
button:hover {
  opacity: 0.8;
}
/* Extra style for the cancel button (red) */
.btn-login {
  width: auto;
  padding: 10px 40px;
  background-color: #549552; /*#f44336;*/
  font-weight: 600;
  text-transform:  uppercase;
}
.btn-back {
  width: auto;
  color: #549552;
  background: 0 0;
  font-weight: 600;
  padding: 10px 40px;
  border: 1px solid #549552;
  text-transform:  uppercase;
}
.btn-back:hover {
    background-color: #549552;
    color: #fff;
    opacity: 1;
}
.btn-group {
    display: flex;
    justify-content: space-between;
}
/* Center the avatar image inside this container */
.imgcontainer {
    text-align: center;
  margin-bottom: 10px !important;
  margin-top: 20px !important;
}

/* Avatar image */
img.avatar {
    width: 92% !important;
}

/* Add padding to containers*/
.container {
  padding: 0px 16px;
}
.container-login {
  padding: 15px 16px 0px;
}
.container-bottom {
  padding: 16px 0px;
}
.container p {
    margin: 0 0 20px;
    color: #333;
    font-size: 14px;
    text-align: justify;
}
/* The "Forgot password" text */
span.psw {
  float: right;
  padding-top: 16px;
}
.psw a {
  color: #337ab7;
  text-shadow: none;
  text-decoration: none;
}
.psw a:hover {
  color: #23527c;
  text-decoration: underline;
  cursor: pointer;
}
.login-title {
  background-color: #4467ad;
  color: #4467ad;
  padding: 15px 0 15px;
  text-align: center;
}
.login-title h4 {
  margin: 0px;
  color: #fff;
  font-weight: 600;
  text-transform:  uppercase;
}
.inputWithIcon {
  position: relative;
}

.inputWithIcon i {
  position: absolute;
  left: 85%;
  top: 13px;
  padding: 9px 8px;
  color: #aaa;
  transition: 0.3s;
}
/* Change styles for span and cancel button on extra small screens */
@media screen and (max-width: 300px) {
  span.psw {
    display: block;
    float: none;
    text-align: center;
  }
  .btn-login {
    width: 100%;
  }
}