/* Auth Pages - Full Screen Split Layout */

.auth-page {
  min-height: 100vh;
  display: flex;
  background: var(--bg);
}

/* Branding Side (Left) */
.auth-side-branding {
  flex: 1.2;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.auth-side-branding::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  filter: blur(60px);
}

.auth-side-branding::after {
  content: '';
  position: absolute;
  bottom: -5%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: rgba(26, 122, 60, 0.05);
  border-radius: 50%;
  filter: blur(50px);
}

.branding-content {
  text-align: center;
  z-index: 2;
  max-width: 500px;
}

.branding-logo {
  height: 120px;
  margin-bottom: 30px;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
}

.branding-title {
  font-family: "Cinzel", serif;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 4px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.branding-text {
  font-size: 1.1rem;
  opacity: 0.8;
  line-height: 1.6;
  font-weight: 300;
}

/* Form Side (Right) */
.auth-side-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px;
  background: var(--white);
}

.form-container {
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
}

.auth-header {
  margin-bottom: 40px;
}

.auth-header h2 {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 10px;
  font-weight: 700;
}

.auth-header p {
  color: var(--text-muted);
  font-size: 1rem;
}

/* Form Elements */
.auth-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.grid-full {
  grid-column: span 2;
}

.form-group {
  margin-bottom: 25px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-input-wrapper {
  position: relative;
}

.form-input-wrapper i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 1.1rem;
}

.form-input {
  width: 100%;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 16px 16px 50px;
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  color: var(--text);
  outline: none;
  transition: all 0.3s ease;
}

.form-input:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(10, 29, 55, 0.05);
}

.auth-footer {
  margin-top: 30px;
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.auth-footer a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
}

.auth-footer a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 1024px) {
  .auth-side-branding {
    display: none;
  }
  .auth-side-form {
    flex: 1;
    padding: 40px 20px;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .auth-form-grid {
    grid-template-columns: 1fr;
  }
  .grid-full {
    grid-column: span 1;
  }
}
