@import url('styles.css');

/* Login page specific styles */
.auth-container {
  max-width: 420px;
  margin: 6rem auto;
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.07);
  text-align: center;
}
.auth-logo .brand-logo {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  font-size: 20px;
  margin-bottom: 0.75rem;
}
.auth-title { margin-bottom: 1.25rem; font-size: 1.25rem; }
.form-floating .form-control { padding: 1rem 0.75rem; }
.btn-login { 
  width: 100%; 
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 50%, #60a5fa 100%);
  color: white;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35), 0 3px 8px rgba(37, 99, 235, 0.15);
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}
.btn-login::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}
.btn-login:hover::before {
  left: 100%;
}
.btn-login:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 50%, #3b82f6 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.45), 0 5px 12px rgba(37, 99, 235, 0.25);
}
.btn-login:active {
  transform: translateY(0);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.35), 0 2px 6px rgba(37, 99, 235, 0.15);
}
.btn-login:focus {
  outline: none;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35), 0 3px 8px rgba(37, 99, 235, 0.15), 0 0 0 3px rgba(37, 99, 235, 0.2);
}
.password-field { position: relative; }
.password-field .toggle-password { position: absolute; right: 10px; top: 50%; transform: translateY(-50%); border: none; background: transparent; }

/* small responsive tweak */
@media (max-width: 576px) {
  .auth-container { margin: 3rem 1rem; padding: 1.25rem; }
}
