/**
 * VSS Registration Style
 * Unified styles for authentication pages (login, register, forgot-password)
 */

body.vss-auth-page {
  font-family: "Inter", sans-serif;
  position: relative;
}

/* Body background - applied dynamically via inline style */
body.vss-auth-page::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: 35%;
  background-position: center;
  background-attachment: fixed;
  z-index: -1;
}

/* Right side image container */
.auth-image-side {
  position: relative;
}

/* Right side background image - applied dynamically via inline style */
.auth-image-side::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: contain;
  background-position: center;
  opacity: 0.3;
  z-index: 0;
}

/* Overlay content container */
.auth-overlay-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 3rem;
  text-align: center;
  color: white;
}

/* Overlay title */
.auth-overlay-title {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  font-family: "Cormorant Garamond";
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Overlay subtitle */
.auth-overlay-subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.6;
  opacity: 0.95;
  max-width: 400px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments for mobile */
@media (max-width: 1023px) {
  .auth-overlay-title {
    font-size: 2rem;
  }

  .auth-overlay-subtitle {
    font-size: 1.1rem;
  }
}

/* Additional utility styles for auth forms */
.auth-form-container {
  position: relative;
  z-index: 1;
}
