.login-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  background-color: #f0f0f0;
  padding: 50px 0px;
}

.login-container .login-box {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  width: 100%;
  max-width: 400px;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.login-container .login-box .boxlogin {
  padding: 20px;
}

.login-container .login-box .boxlogin .title {
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  color: #202124;
}

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

.login-container .login-box .boxlogin .form-group label {
  display: block;
  margin-bottom: 5px;
  font-size: 15px;
  font-weight: 400;
  color: #202124;
}

.login-container .login-box .boxlogin .form-group input {
  width: 100%;
  padding: 10px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 400;
  color: #202124;
}

.login-container .login-box .boxlogin .form-group button {
  width: 100%;
  padding: 10px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  background-color: #03429f;
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  cursor: pointer;
}

.login-container .login-box .boxlogin .form-group .description {
  font-size: 15px;
  font-weight: 400;
  color: #202124;
}

.login-container .login-box .boxlogin #register {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.login-container .login-box .boxlogin #forgot-password {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* Email Verification Alert Styles */
.email-verification-alert {
  background: linear-gradient(135deg, #fff3cd, #ffeaa7);
  border: 2px solid #f39c12;
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  animation: slideInDown 0.5s ease-out;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.verification-icon {
  background: #f39c12;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.verification-content {
  flex: 1;
}

.verification-content h3 {
  color: #d68910;
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 10px;
}

.verification-content p {
  color: #856404;
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 20px;
}

.verification-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-resend {
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-resend:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.btn-resend:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-close {
  background: linear-gradient(135deg, #95a5a6, #7f8c8d);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-close:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(149, 165, 166, 0.3);
}

/* Responsive design */
@media (max-width: 480px) {
  .email-verification-alert {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .verification-actions {
    justify-content: center;
  }

  .btn-resend,
  .btn-close {
    flex: 1;
    min-width: 120px;
  }
}

/*# sourceMappingURL=login.css.map */