/**
 * Auth pages - Starshipit-style layout (two-column, with logo)
 */

/* Left column - branding + logo */
.login-left-area {
  background: linear-gradient(165deg, #1e3a5f 0%, #2563eb 50%, #0ea5e9 100%);
  height: 100%;
  min-height: 100vh;
  padding: 2.5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.auth-logo-left {
  max-width: 220px;
}

.auth-logo-left .auth-logo-img {
  width: 100%;
  height: auto;
  display: block;
}

.auth-brand-text {
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  display: inline-block;
}

.auth-brand-text:hover {
  color: rgba(255, 255, 255, 0.9);
}

.auth-tagline {
  font-size: 2.3rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.auth-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 480px;
}

.auth-benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.95);
}

.auth-benefits-list li {
  padding: 0.25rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.auth-benefits-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  font-weight: 700;
  color: #fff;
}

.auth-testimonials-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
}

.auth-testimonials-list li {
  padding: 0.35rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.auth-testimonials-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

.auth-cta {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.5;
}

/* Right column - form */
.login-right-area {
  background: #fff;
  padding: 2rem 1.5rem;
}

.auth-form-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
}

.auth-form-subtitle {
  font-size: 0.9375rem;
  color: #6b7280;
  margin-bottom: 1.75rem;
}

/* Logo on form side (right column) */
.auth-logo-right {
  max-width: 300px;
}

.auth-logo-form {
  width: 100%;
  height: auto;
  display: block;
}

.auth-form-fields {
  max-width: 400px;
}

.auth-form-fields .form-label {
  font-weight: 500;
  color: #374151;
  font-size: 0.875rem;
}

.auth-form-fields .form-control {
  border-radius: 0.375rem;
  border: 1px solid #d1d5db;
  padding: 0.5rem 0.75rem;
  font-size: 0.9375rem;
}

.auth-form-fields .form-control:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.auth-btn-continue {
  padding: 0.6rem 1rem;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 0.375rem;
  background: #2563eb;
  border: none;
}

.auth-btn-continue:hover {
  background: #1d4ed8;
}

.auth-link {
  color: #2563eb;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
}

.auth-link:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.auth-form-footer {
  font-size: 0.875rem;
  color: #6b7280;
}

.auth-form-footer a {
  font-weight: 500;
}

.login-right-area .login-form {
  max-width: 100%;
}

/* Password toggle padding */
.login-right-area .login-form form input[type="password"] {
  padding-right: 2.5rem;
}

@media (min-width: 992px) {
  .login-section .login-right-col {
    width: 58%;
  }
  .login-section .login-left-col {
    width: 42%;
  }
  .login-right-area {
    padding: 3rem 4rem;
  }
  .login-left-area {
    padding: 3rem 2.5rem;
  }
}

@media (max-width: 991.98px) {
  .login-left-area {
    min-height: auto;
    padding: 2rem 1.5rem;
  }
  .auth-tagline {
    font-size: 1.25rem;
  }
  .auth-description,
  .auth-testimonials-list {
    margin-bottom: 1rem;
  }
}
