/* Reset default margin and padding */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Set a background color for the body */
body {
  font: 13px/20px "Lucida Grande", Tahoma, Verdana, sans-serif;
  color: #f7f6f4;
  background:#f7f6f4;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 5px;
}

/* Center the login form on the page */
.login {
  width: 400px;
  margin: 20px auto;
  border: #040273 solid 1px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: left;
  position: relative;
  padding: 20px 20px 20px;
  border-radius: 8px;
  opacity: 10;
}

/* Style the icon next to the input fields */
.login p i {
  font-size: 24px;
  color: #040273;
  margin-left: 3px;
  padding: 8px;
}

/* Style the input fields */
.login input[type="text"],
.login input[type="password"],
.login input[type="email"] {
  width: 80%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #040273;
  border-radius: 5px;
  font-size: 20px;
  opacity: .6;
  text-align: left;
}

/* Style the Remember me checkbox label */
.login p.remember_me label {
  position: relative;
  bottom: 1px;
  margin-right: 4px;
  vertical-align: middle;
  padding-left: 20px;
  font-size: 18px;
  color: #040273;
  font-weight: 600;
  cursor: pointer;
}

/* Style the Login button */
.login .submit input[type="submit"] {
  background-color: #040273;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 18px;
  margin-left: 74%;
}

/* Style the Login button on hover */
.login .submit input[type="submit"]:hover {
  background-color: #a25609;
}

/* Additional styles for Font Awesome icons */
.login p i.fas {
  font-size: 36px;
  color: #040273;
  margin-left: 2px;
  padding: 10px 10px 10px 10px;
}

.login .forgot-password{
  color:#040273;
  font-weight:600 ;
  font-size: 18px;
  position: relative;
  bottom: 1px;
  margin-right: 4px;
  padding-top: -15px;
  text-align: left;
}

.login .forgot-password a {
  text-decoration: none;
  color: #e47b13;
  font-size: 16px;
  font-weight:bolder ;
  opacity: 10;
}

/* Style the "Forgot Password?" link on hover */
.login .forgot-password a:hover {
  text-decoration: underline;
}

/* Loading Spins */
.spinner-grow, .spinner-grow  {
  background-color: none;
  border-radius: 50%;
  display: inline-block;
  margin: 0 5px;
}

.bg-primary {
  background-color: #007bff;
}

.bg-danger {
  background-color: #dc3545;
}

.bg-success {
  background-color: #28a745;
}

.bg-warning {
  background-color: #ffc107;
}

.bg-dark {
  background-color: #343a40;
}

.btn-navy{
 background: #040273;
 color: #f7f6f4;
 font-weight: 600;
}