/* CUSTOM CSS EDITABLE AREA */
/* Add your custom styles below this line */

.header-custom {
    /* Custom header styles */
}

.footer-custom {
    /* Custom footer styles */
}

.button-primary {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.button-primary:hover {
    background-color: #2563eb;
    transform: translateY(-2px);
}

.login-form h1 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

/* Input line style */
.login-form input[type="email"],
.login-form input[type="password"] {
  border: none;
  border-bottom: 1px solid #d1d5db; /* Tailwind gray-300 */
  border-radius: 0;
  background: transparent;
  font-size: 1rem;
  padding: 0.5rem 0;
  transition: border-color 0.2s ease;
}

.login-form input[type="email"]:focus,
.login-form input[type="password"]:focus {
  outline: none;
  border-bottom-color: #3b82f6; /* Tailwind blue-500 */
}

/* Forgot password link */
.login-form a {
  color: #2563eb; /* Tailwind blue-600 */
  font-size: 0.9rem;
  text-decoration: none;
}
.login-form a:hover {
  text-decoration: underline;
}

/* Buttons */
.login-form button {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.3px;
}
.login-form button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.3); /* amber-500 glow */
}

/* Register + Help buttons */
.login-form .secondary-btn {
  background-color: #1e40af; /* blue-800 */
}
.login-form .secondary-btn:hover {
  background-color: #1e3a8a; /* darker */
}

.login-form .help-btn {
  background-color: #9ca3af; /* gray-400 */
}
.login-form .help-btn:hover {
  background-color: #6b7280; /* gray-500 */
}


.orange-submit-btn {
  background-color: #f5a30b !important; /* amber-500 */
  color: white;
  border-radius: 0.375rem;
  padding: 0.75rem;
  width: 100%;
  font-weight: 500;
  text-align: center;
  display: block;
  transition: background-color 0.2s ease-in-out;

  /* Elevation effect */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: 
    background-color 0.2s ease-in-out,
    box-shadow 0.2s ease-in-out,
    transform 0.15s ease-in-out;


}
.orange-submit-btn:hover {
  background-color: #eba102 !important; /* amber-600 */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25); /* stronger shadow */
  transform: translateY(-1px); /* lift up slightly */
}


.login-submit-btn:active {
  transform: translateY(1px); /* press down */
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}