/* ===== General Layout ===== */
.user-login-form {
  max-width: 400px;
  margin: 3rem auto;
  padding: 2rem;
  background-color: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* ===== Titles ===== */
.login-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: center;
  color: #111827;
}

p.login-title {
    color: #555; 
    text-align: center; 
    background: transparent; 
    border-bottom: 1px solid #cfcfcf; 
    border-radius: 0px ;
}

/* ===== Labels ===== */
.user-login-form label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #374151;
}

/* ===== Input Fields ===== */
.user-login-form input[type="text"],
.user-login-form input[type="password"] {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  background-color: #f9fafb;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.user-login-form input[type="text"]:focus,
.user-login-form input[type="password"]:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.3);
  outline: none;
}

/* ===== Submit Button ===== */

.user-login-form .form-actions button { border:0; background: #00a686; padding: 12px 20px;border-radius: 3px;color: #fff;text-transform: uppercase;transition: all 0.3s ease-in-out; margin-left: 2px; font-weight: 500; font-size: 13px; } 
.user-login-form .forgot-password a, .user-login-form .actions-suffix a {color: #00a686;}
.user-register-form #edit-submit { background: #00a686; padding: 12px 20px;border-radius: 3px;color: #fff;text-transform: uppercase;transition: all 0.3s ease-in-out; margin-left: 2px; font-weight: 500; font-size: 13px; border:none; }


.form-type-password {
  width: 100%;
}

/* ===== Forgot Password & Create Account ===== */
.user-login-form .forgot-password,
.user-login-form .actions-suffix {
  text-align: center;
  margin-top: 1rem;
}

.user-login-form .forgot-password a,
.user-login-form .actions-suffix a {
  text-decoration: none;
  font-weight: 500;
}

.user-login-form .forgot-password a:hover,
.user-login-form .actions-suffix a:hover {
  text-decoration: underline;
}

/* ===== Caps Lock Warning ===== */
#capslockdiv {
  display: none;
  margin-top: 0.5rem;
  color: #b91c1c;
  font-weight: 500;
  text-align: center;
}

/* ===== Responsive ===== */
@media (max-width: 480px) {
  .user-login-form {
    padding: 1.5rem 1rem;
  }
}


