.login-container{
  display: flex;
  align-items: top;
  justify-content: center;
  padding: 1rem;
  min-height: 100vh;
}

.login-card {
  background-color: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: fit-content;
  max-width: 400px;
  margin-top: 80px;
}

.login-card .logo{
  display: block;
  width: 100%;
  max-width: 175px;
}

.login-card h1 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 32px;
  color: #333;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #444;
}

.form-group input {
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  transition: border-color 0.3s;
}

.form-group input:focus {
  border-color: #005784;
  outline: none;
}

.signin-btn {
  width: 100%;
  padding: 0.75rem;
  background-color: #005784;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-top: 12px;
}

.signin-btn:hover {
  background-color: #005784;
}


.forgot-password {
  text-align: right;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.forgot-password a {
  font-size: 0.9rem;
  color: #005784;
  text-decoration: none;
  transition: color 0.3s;
}

.forgot-password a:hover {
  opacity: 0.8;
  text-decoration: underline;
}


/* Mobile Responsive */
@media (max-width: 600px) {
  .login-card {
    padding: 1.5rem;
    margin-top: 24px;
  }

  .login-card h1 {
    font-size: 18px;
  }
  .form-group {
    margin-bottom: 1rem;
  }
  .form-group label {
    font-size: 0.9rem;
  }

  .form-group input,
  .signin-btn {
    font-size: 0.95rem;
    padding: 0.65rem;
  }
}

.flash-message {
  color: #E74C3C;
  font-size: 14px;
  margin-bottom: 12px;
}

.recaptcha-text {
  font-size: 12px;
  color: #555;
  margin-top: 10px;
}

.signin-btn[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}