/*!**********************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ../../node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[10].use[2]!../../node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[10].use[3]!./src/app/auth.css ***!
  \**********************************************************************************************************************************************************************************************************************************************************************/
/* --- AUTH LAYOUT --- */
.auth-page-wrapper {
  background: #0f172a; /* Deep Slate Base */
  background: radial-gradient(circle at top left, #1e293b 0%, #0f172a 100%);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Global Glow Effect (Always visible) */
.auth-page-wrapper::before {
  content: '';
  position: absolute;
  top: -10%; left: -10%;
  width: 500px; height: 500px;
  background: var(--primary);
  filter: blur(150px);
  opacity: 0.12;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.auth-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  min-height: 100vh;
  padding-top: 72px;
  position: relative;
  z-index: 1;
}

/* --- AUTH TOP BAR --- */
.auth-top-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 72px;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.auth-top-bar a { color: white; text-decoration: none; }
.auth-top-bar .brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: -0.04em;
  flex-shrink: 0;
}

.auth-nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.auth-top-bar .languages {
  display: flex;
  gap: 0.35rem;
}


.auth-lang-btn {
  font-size: 0.7rem; font-weight: 800; padding: 0.25rem 0.5rem; border-radius: 0.4rem;
  color: rgba(255, 255, 255, 0.4); background: transparent; border: none; cursor: pointer; transition: all 0.2s;
}
.auth-lang-btn.active { color: var(--primary); background: rgba(255, 255, 255, 0.05); }

/* --- BRANDING SIDE (Desktop Only) --- */
.auth-visual {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem;
  color: white;
}

.auth-visual-content { animation: authVisualEntry 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
@keyframes authVisualEntry { from { opacity: 0; transform: translateX(-20px); } to { opacity: 1; transform: translateX(0); } }

.auth-quote { font-size: 2.8rem; font-weight: 900; line-height: 1.1; margin-bottom: 1.5rem; letter-spacing: -0.04em; }
.auth-subquote { font-size: 1.15rem; color: #94a3b8; max-width: 480px; line-height: 1.6; }

/* --- FORM SIDE --- */
.auth-form-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4rem;
}

.auth-card {
  width: 100%;
  max-width: 440px;
  background: rgba(30, 41, 59, 0.4); /* Translucent Slate */
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 3rem;
  border-radius: 2.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  animation: authCardEntry 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes authCardEntry { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.auth-header { margin-bottom: 2rem; text-align: center; }
.auth-header h2 { font-size: 2rem; font-weight: 900; letter-spacing: -0.03em; margin-bottom: 0.5rem; color: white; }
.auth-header p { color: #94a3b8; font-size: 1rem; }

/* --- TOGGLE SWITCH --- */
.auth-switch-container {
  display: flex;
  background: rgba(15, 23, 42, 0.6);
  padding: 0.35rem;
  border-radius: 1.25rem;
  margin-bottom: 3rem;
  position: relative;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.auth-switch-btn {
  flex: 1 1; padding: 0.7rem; border: none; background: transparent;
  font-size: 0.85rem; font-weight: 800; color: #64748b; cursor: pointer;
  position: relative; z-index: 2; transition: color 0.3s ease;
  text-transform: uppercase; letter-spacing: 0.05em;
}

.auth-switch-btn.active { color: white; }

.auth-switch-slider {
  position: absolute; top: 0.35rem; bottom: 0.35rem;
  width: calc(50% - 0.35rem); background: #334155;
  border-radius: 1rem; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}
.auth-switch-slider.register { transform: translateX(100%); }

/* --- INPUTS --- */
.auth-card .form-group label { color: #94a3b8; font-weight: 700; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; }

.auth-card .form-input {
  background: rgba(15, 23, 42, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  padding: 0.875rem 1rem;
  border-radius: 1rem;
}

.auth-card .form-input:focus {
  background: rgba(15, 23, 42, 0.6);
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.15);
}

.auth-card .form-input::placeholder { color: #475569; }

.auth-separator {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 1.5rem 0;
  color: #64748b;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.auth-separator::before,
.auth-separator::after {
  content: '';
  flex: 1 1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.auth-separator span {
  padding: 0 1rem;
}

.btn-google {
  background: white !important;
  color: #1e293b !important;
  border: 1px solid #e2e8f0 !important;
  font-weight: 700 !important;
  transition: all 0.2s ease !important;
}

.btn-google:hover {
  background: #f8fafc !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.auth-footer { margin-top: 2.5rem; text-align: center; font-size: 0.95rem; color: #64748b; }
.auth-footer button { color: var(--primary); font-weight: 800; }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .auth-container { grid-template-columns: 1fr; }
  .auth-visual { display: none; }
  .auth-form-side { padding: 4rem 1.25rem; }
  .auth-card { 
    background: rgba(30, 41, 59, 0.4); 
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    padding: 2.5rem 1.5rem;
  }
  .auth-top-bar { padding: 0 1rem; }
}

@media (max-width: 480px) {
  .auth-form-side { padding: 2rem 1rem; }
  .auth-header h2 { font-size: 1.75rem; }
  .auth-switch-container { margin-bottom: 2rem; }
}

