/* ==========================================
   AUTH PAGES - THEME PREMIUM UNIFIED
   ========================================== */

:root {
  --auth-white: #ffffff;
  --auth-pink: #ff69b4;
  --auth-gold: #C9B037;
  --auth-black: #1a1a1a;
  --auth-gray: #666666;
  --auth-green: #28a745;
  --auth-red: #dc3545;
  --auth-blue: #4e73df;
  --auth-orange: #fd7e14;
  --auth-purple: #6f42c1;
  --auth-gradient-primary: linear-gradient(135deg, var(--auth-gold), var(--auth-pink));
  --auth-gradient-secondary: linear-gradient(135deg, var(--auth-blue), var(--auth-purple));
  --auth-gradient-success: linear-gradient(135deg, var(--auth-green), #20c997);
  --auth-gradient-danger: linear-gradient(135deg, var(--auth-red), #c82333);
  --auth-gradient-info: linear-gradient(135deg, var(--auth-blue), #0056b3);
  --auth-shadow-lg: 0 12px 40px rgba(201, 176, 55, 0.35);
  --auth-shadow-xl: 0 20px 60px rgba(201, 176, 55, 0.4);
  --auth-radius-lg: 24px;
  --auth-radius-xl: 32px;
  --auth-transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --auth-transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

* { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0; 
}

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, var(--auth-white), #fef7ff);
  color: var(--auth-black);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Verification Page Styles */
.luxe-split-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
  z-index: -1;
}

.luxe-img-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../img/2026-6.jpg') center/cover;
  opacity: 0.1;
  z-index: -1;
}

.luxe-bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.3;
  z-index: -1;
}

.orb-1 {
  top: 10%;
  left: 10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--auth-gold), transparent);
  animation: float 20s infinite ease-in-out;
}

.orb-2 {
  top: 60%;
  right: 15%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--auth-pink), transparent);
  animation: float 25s infinite ease-in-out reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

.auth-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem;
}

.hero-frame-sculpted {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 176, 55, 0.1);
  border-radius: var(--auth-radius-xl);
  padding: 3rem;
  backdrop-filter: blur(10px);
  box-shadow: var(--auth-shadow-xl);
}

.hero-frame-inner {
  position: relative;
}

.prestige-frame {
  background: linear-gradient(135deg, var(--auth-gold), var(--auth-pink));
  border-radius: 50%;
  padding: 1rem;
  box-shadow: 0 8px 32px rgba(201, 176, 55, 0.3);
}

.verify-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.luxe-badge {
  background: var(--auth-gradient-primary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Verification Form */
.verify-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.code-input {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(201, 176, 55, 0.3);
  border-radius: var(--auth-radius-lg);
  padding: 1rem 1.5rem;
  font-size: 1.5rem;
  text-align: center;
  letter-spacing: 0.5rem;
  color: var(--auth-gold);
  transition: var(--auth-transition-smooth);
}

.code-input:focus {
  outline: none;
  border-color: var(--auth-gold);
  box-shadow: 0 0 0 3px rgba(201, 176, 55, 0.2);
  background: rgba(255, 255, 255, 0.2);
}

.btn-artistic-pink {
  background: var(--auth-gradient-primary);
  color: white;
  border: none;
  border-radius: var(--auth-radius-lg);
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--auth-transition-bounce);
  position: relative;
  overflow: hidden;
}

.btn-artistic-pink:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(201, 176, 55, 0.4);
}

.shining-element {
  position: relative;
}

.shining-element::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Alert Messages */
.alert-luxe {
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.3);
  border-radius: var(--auth-radius-lg);
  padding: 1rem 1.5rem;
  color: var(--auth-pink);
  font-weight: 500;
  backdrop-filter: blur(10px);
  margin-bottom: 1.5rem;
}

/* Auth Footer */
.auth-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  gap: 2rem;
}

.auth-footer-text {
  color: var(--auth-gray);
  font-size: 0.9rem;
}

.auth-link-premium {
  color: var(--auth-gold);
  text-decoration: none;
  font-weight: 600;
  transition: var(--auth-transition-smooth);
}

.auth-link-premium:hover {
  color: var(--auth-pink);
}

.auth-link-back {
  color: var(--auth-gray);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--auth-transition-smooth);
}

.auth-link-back:hover {
  color: var(--auth-gold);
}

/* Password Reset Styles */
.reset-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

.reset-container {
  max-width: 500px;
  width: 100%;
  background: #0f1216;
  border: 2px solid var(--auth-gold);
  border-radius: var(--auth-radius-lg);
  padding: 3.5rem 2.5rem;
  box-shadow: var(--auth-shadow-lg);
  text-align: center;
}

.reset-header h2 {
  font-size: 2.2rem;
  color: var(--auth-white);
  font-family: 'Cinzel', serif;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.reset-header p {
  color: #718096;
  margin-bottom: 2.5rem;
}

.flash {
  padding: 1rem;
  margin-bottom: 2rem;
  border-radius: var(--auth-radius-lg);
  font-weight: 600;
}

.flash.success {
  background: #f0fff4;
  border: 1px solid #c6f6d5;
  color: #2f855a;
}

.flash.error {
  background: #fff5f5;
  border: 1px solid #fed7d7;
  color: #c53030;
}

.reset-form input {
  width: 100%;
  padding: 14px 18px;
  margin-bottom: 1.5rem;
  background: var(--auth-white);
  border: 1px solid #e2e8f0;
  border-radius: var(--auth-radius-lg);
  color: #2d3748;
  font-size: 1rem;
  transition: var(--auth-transition-smooth);
}

.reset-form input:focus {
  outline: none;
  border-color: var(--auth-gold);
  box-shadow: 0 0 0 4px rgba(201, 176, 55, 0.1);
}

.reset-form button {
  width: 100%;
  padding: 16px;
  background: var(--auth-gradient-primary);
  color: var(--auth-white);
  border: none;
  border-radius: var(--auth-radius-lg);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--auth-transition-smooth);
}

.reset-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(201, 176, 55, 0.2);
}

.reset-link {
  margin-top: 2rem;
  color: #718096;
  font-size: 0.9rem;
}

.reset-link a {
  color: var(--auth-gold);
  font-weight: 700;
  text-decoration: none;
  transition: var(--auth-transition-smooth);
}

.reset-link a:hover {
  color: var(--auth-pink);
}

.step-indicator {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.step {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #edf2f7;
  color: #718096;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.step.active {
  background: var(--auth-gold);
  color: var(--auth-white);
  box-shadow: 0 4px 10px rgba(201, 176, 55, 0.2);
}

.step.completed {
  background: #2d3748;
  color: var(--auth-white);
}

/* Register Confirm Styles */
.register-confirm-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.confirm-header {
  text-align: center;
  margin-bottom: 2rem;
}

.confirm-header h2 {
  font-family: 'Cinzel', serif;
  font-size: 2.5rem;
  color: var(--auth-black);
  margin-bottom: 0.5rem;
}

.confirm-header p {
  color: var(--auth-gray);
  font-size: 1.1rem;
}

.confirm-left {
  flex: 1;
}

.confirm-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.presentation-content {
  text-align: center;
}

.confirm-title {
  font-family: 'Cinzel', serif;
  font-size: 2.5rem;
  color: var(--auth-black);
  margin-bottom: 0.5rem;
}

.confirm-subtitle {
  color: var(--auth-gray);
  font-size: 1.1rem;
}

.upload-section {
  margin-top: 2rem;
}

.upload-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.2rem;
  color: var(--auth-black);
  margin-bottom: 1rem;
}

.upload-icon {
  font-size: 1.5rem;
}

.upload-subtitle {
  color: var(--auth-gray);
  margin-bottom: 1.5rem;
}

.upload-preview {
  width: 100px;
  height: 100px;
  border: 2px dashed var(--auth-gold);
  border-radius: var(--auth-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  background: rgba(201, 176, 55, 0.05);
}

.upload-placeholder {
  text-align: center;
  color: var(--auth-gray);
}

.upload-text {
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.upload-label {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--auth-gradient-primary);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.confirm-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

/* Alert Messages */
.alert-message {
  padding: 1rem;
  border-radius: var(--auth-radius-lg);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(201, 176, 55, 0.3);
}

.alert-message.error {
  border-color: rgba(220, 53, 69, 0.5);
  color: var(--auth-pink);
}

.alert-message.success {
  border-color: rgba(39, 174, 96, 0.5);
  color: var(--auth-green);
}

.alert-icon {
  font-size: 1.5rem;
}

.alert-text {
  flex: 1;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
  .auth-wrapper {
    padding: 1rem;
  }
  
  .hero-frame-sculpted {
    padding: 2rem;
  }
  
  .reset-container {
    margin: 1rem;
    padding: 2rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  
  .verify-form {
    gap: 1rem;
  }
  
  .code-input {
    padding: 0.8rem 1rem;
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .auth-wrapper {
    padding: 0.5rem;
  }
  
  .hero-frame-sculpted {
    padding: 1.5rem;
  }
  
  .reset-container {
    padding: 1.5rem;
  }
  
  .luxe-badge {
    font-size: 0.7rem;
    padding: 0.3rem 0.8rem;
  }
  
  .btn-artistic-pink {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
}
