﻿.auth-container {
  min-height: 100vh;
}

/* Brand Panel */
.brand-panel {
  background: linear-gradient(160deg, #8B9E8B 0%, #6B7E6B 100%);
  position: relative;
  overflow: hidden;
}

.brand-panel::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at 30% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%), radial-gradient(ellipse at 70% 80%, rgba(0, 0, 0, 0.1) 0%, transparent 50%);
  animation: floatGradient 20s ease-in-out infinite;
}

@keyframes floatGradient {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, -30px) rotate(5deg);
  }
  66% {
    transform: translate(-20px, 20px) rotate(-3deg);
  }
}
.brand-content {
  position: relative;
  z-index: 1;
}

.brand-logo {
  width: 80px;
  height: 80px;
  opacity: 0.95;
}

.brand-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.feature-item {
  opacity: 0.9;
}

/* Form Panel */
.form-panel {
  background: #fff;
}

.form-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  font-weight: 500;
}

/* Custom Form Controls */
.form-control-sc {
  padding: 0.875rem 1rem;
  background: #FAF8F5;
  border: 1.5px solid transparent;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.form-control-sc:focus {
  background: #fff;
  border-color: #8B9E8B;
  box-shadow: 0 0 0 4px rgba(139, 158, 139, 0.1);
}

.form-control-sc::placeholder {
  color: #aaa;
}

/* Password Toggle */
.password-wrapper {
  position: relative;
}

.password-toggle {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #888;
  cursor: pointer;
  padding: 0.25rem;
  transition: color 0.3s ease;
}

.password-toggle:hover {
  color: #2C2C2C;
}

/* Buttons */
.btn-google {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.875rem 1.5rem;
  background: #fff;
  border: 1.5px solid #e0e0e0;
  border-radius: 12px;
  font-weight: 500;
  color: #2C2C2C;
  transition: all 0.3s ease;
}

.btn-google:hover {
  background: #fafafa;
  border-color: #bdbdbd;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.btn-google img {
  width: 20px;
  height: 20px;
}

.btn-submit {
  padding: 1rem 1.5rem;
  background: #2C2C2C;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  color: #fff;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn-submit::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #6B7E6B, #A67B5B);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(44, 44, 44, 0.25);
  color: #fff;
}

.btn-submit:hover::before {
  opacity: 1;
}

.btn-submit span {
  position: relative;
  z-index: 1;
}

/* Links */
.link-sage {
  color: #6B7E6B;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.link-sage:hover {
  color: #C4987A;
}

/* Divider */
.divider-text {
  font-size: 0.85rem;
  color: #999;
  text-transform: lowercase;
  letter-spacing: 0.05em;
}

/* Form check custom */
.form-check-input:checked {
  background-color: #8B9E8B;
  border-color: #8B9E8B;
}

.form-check-input:focus {
  box-shadow: 0 0 0 0.25rem rgba(139, 158, 139, 0.25);
}

/* Mobile logo */
.mobile-logo-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.8rem;
  color: #6B7E6B;
  font-weight: 500;
}

/* Validation */
.field-validation-error {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.input-validation-error {
  border-color: #dc3545 !important;
}

/* Register Page Specific Styles */
/* Testimonial */
.testimonial {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.testimonial-text {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.15rem;
  font-style: italic;
}

/* Account Type Cards */
.type-card {
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 14px;
  background: #FAF8F5;
  transition: all 0.3s ease;
}

.type-card:hover {
  border-color: #C5D4C5;
  transform: translateY(-2px);
}

.type-card.active {
  border-color: #8B9E8B;
  background: rgba(139, 158, 139, 0.08);
}

.type-card .type-icon {
  font-size: 2rem;
  color: #6B7E6B;
  opacity: 0.8;
}

.type-card.active .type-icon {
  opacity: 1;
}

/* Form Select */
.form-select-sc {
  padding: 0.875rem 1rem;
  background: #FAF8F5;
  border: 1.5px solid transparent;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.form-select-sc:focus {
  background: #fff;
  border-color: #8B9E8B;
  box-shadow: 0 0 0 4px rgba(139, 158, 139, 0.1);
}

/* Password Strength */
.password-strength {
  height: 4px;
  background: #e8e8e8;
  border-radius: 2px;
  overflow: hidden;
}

.password-strength-bar {
  height: 100%;
  width: 0%;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.password-strength-bar.weak {
  width: 33%;
  background: #dc3545;
}

.password-strength-bar.medium {
  width: 66%;
  background: #C4987A;
}

.password-strength-bar.strong {
  width: 100%;
  background: #8B9E8B;
}

/* Professional Fields */
.professional-fields {
  background: rgba(139, 158, 139, 0.05);
  border: 1px solid rgba(139, 158, 139, 0.15);
  border-radius: 12px;
  display: none;
}

.professional-fields.show {
  display: block;
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.professional-note {
  background: #E8D4C4;
  border-radius: 10px;
  color: #A67B5B;
  display: none;
}

.professional-note.show {
  display: block;
  animation: fadeIn 0.3s ease-out;
}

/* Form Panel Scrollable */
.form-panel {
  overflow-y: auto;
}
