/* Authentication related styles */

/* Login page styles */
.login-page {
  background-color: #3d464d;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.login-box {
  background-color: #fff;
  border-radius: 3px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  max-width: 400px;
  width: 100%;
  padding: 30px;
  font-family: 'Manrope', sans-serif;
}

.login-logo {
  text-align: center;
  margin-bottom: 30px;
}

.login-logo img {
  max-width: 200px;
  height: auto;
}

.login-form-container h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #37363e;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 24px;
}

.login-form-container .form-group {
  margin-bottom: 20px;
}

.login-form-container label {
  color: #58666e;
  font-weight: 500;
}

.login-form-container .form-control {
  height: 40px;
  border-radius: 3px;
  border: 1px solid #bdc4c9;
  box-shadow: inset 0px 1px 0px #f1f0f1;
}

.login-form-container .form-control:focus {
  background: #f7f7f7;
  border-color: #bdc4c9;
  box-shadow: none;
  border-top: 1px solid #b7b7b7;
}

.login-form-container .btn-primary {
  background-color: #399bff;
  font-weight: 600;
  padding: 10px 0;
  margin-top: 10px;
}

.login-form-container .btn-primary:hover {
  background-color: #4da5ff;
}

.login-form-container .alert-danger {
  background-color: #ef4836;
  color: #fff;
  border: none;
  padding: 10px 15px;
  border-radius: 3px;
}
