﻿/**
 * Ladynia Split-Screen Authentication Stylesheet
 * Where Women Rise Together. All rights reserved.
 */

.auth-page-wrapper {
  min-height: 100vh;
  display: flex;
  background-color: #f8fafc;
}

.auth-split-visual {
  flex: 1;
  background: linear-gradient(135deg, #090d16 0%, #1e1b4b 50%, #312e81 100%);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 60px;
  overflow: hidden;
  color: var(--white);
}

.auth-visual-art {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  filter: saturate(1.2);
}

.auth-visual-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(9, 13, 22, 0.92) 0%, rgba(9, 13, 22, 0.4) 60%, rgba(9, 13, 22, 0.7) 100%);
}

.auth-visual-header {
  position: relative;
  z-index: 2;
}

.auth-visual-content {
  position: relative;
  z-index: 2;
  max-width: 500px;
}

.auth-visual-content h2 {
  color: var(--white);
  font-size: 2.3rem;
  margin-bottom: 14px;
}

.auth-visual-content p {
  color: #cbd5e1;
  font-size: 1.05rem;
  line-height: 1.6;
}

.auth-visual-footer {
  position: relative;
  z-index: 2;
  font-size: 0.875rem;
  color: #94a3b8;
}

/* Form Column */
.auth-split-form {
  width: 540px;
  max-width: 100%;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 50px;
  position: relative;
}

.auth-form-header {
  margin-bottom: 32px;
}

.auth-form-header h1 {
  font-size: 1.95rem;
  margin-bottom: 8px;
}

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

.auth-demo-credentials {
  background: var(--gray-50);
  border: 1px dashed var(--gray-300);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  margin-top: 24px;
  font-size: 0.82rem;
  color: var(--gray-700);
}

.auth-demo-credentials code {
  color: var(--primary);
  font-weight: 700;
}

.password-wrapper {
  position: relative;
}

.password-toggle-btn {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--gray-400);
  cursor: pointer;
  font-size: 1rem;
}

.password-toggle-btn:hover {
  color: var(--primary);
}

@media (max-width: 991px) {
  .auth-split-visual {
    display: none;
  }

  .auth-split-form {
    width: 100%;
    padding: 40px 24px;
    min-height: 100vh;
  }
}

