
body{
  padding: 0 !important;
  margin: 0 !important;
}

.auth-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgb(255 255 255 / 0%) -60%, rgba(255, 255, 255, 0.375) 70%), url(bg.png) no-repeat center center;
  background-size: cover;
  padding: 20px;
}

[data-theme="light"] .auth-wrapper {
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.7) -60%,
      rgba(255, 255, 255) 70%
    ),
    url("bg.png") no-repeat center center;
  background-size: cover;
}

.auth-card {
  padding: 48px 40px;
  width: 100%;
  max-width: 440px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.auth-logo {
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  object-fit: contain;
}

[data-theme="dark"] .logo-light {
  display: none;
}
[data-theme="dark"] .logo-dark {
  display: inline-block;
}
[data-theme="light"] .logo-dark {
  display: none;
}
[data-theme="light"] .logo-light {
  display: inline-block;
}

body:not([data-theme="dark"]) .logo-dark {
  display: none;
}
body:not([data-theme="dark"]) .logo-light {
  display: inline-block;
}

.btn-google {
  background: var(--white, #ffffff);
  border: 1px solid var(--border, #e4e7ec);
  color: var(--text-primary);
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  transition: all 0.2s ease;
}

.btn-google:hover {
  background: var(--secondary, #f8f9fa);
  transform: translateY(-2px);
  border-color: var(--primary, #1a73e8);
}

.auth-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 24px 0;
  color: var(--text-muted);
  font-size: 14px;
}
.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid var(--border, #e4e7ec);
}
.auth-divider span {
  padding: 0 16px;
}

.form-control {
  background: var(--white, #ffffff);
  border: 1px solid var(--border, #e4e7ec);
  color: var(--text-primary);
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 0.95rem;
}

.form-control:focus {
  background: var(--white, #ffffff);
  color: var(--text-primary);
  border-color: var(--primary, #1a73e8);
  box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
}

.form-control::placeholder {
  color: var(--text-muted);
}

.btn-submit {
  background: var(--primary, #1a73e8);
  color: #ffffff;
  padding: 14px;
  border-radius: 12px;
  font-weight: 600;
  border: none;
  width: 100%;
  margin-top: 16px;
  transition: all 0.2s ease;
  font-size: 1rem;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  opacity: 0.95;
}

/* Premium Auth Layout */
.auth-page-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    gap: 40px;
    padding: 20px;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

@media (min-width: 992px) {
    .auth-page-container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 80px;
    }
}

.auth-left-pane {
    flex: 1;
    color: var(--text-primary, #1e293b);
}

.auth-left-pane h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -1.5px;
    color: var(--text-primary, #0f172a);
    font-family: inherit;
}

.auth-left-pane h2 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary, #1a73e8);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    font-family: inherit;
}

.auth-left-pane h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary, #0f172a);
    font-family: inherit;
}

.auth-left-pane p.desc {
    font-size: 1.15rem;
    color: var(--text-secondary, #64748b);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 480px;
    font-family: inherit;
}

.auth-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
}

@media (min-width: 576px) {
    .auth-features-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.auth-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary, #475569);
    font-family: inherit;
}

.auth-feature-item .material-icons {
    color: var(--primary, #1a73e8);
    font-size: 1.25rem;
}

.auth-right-pane {
    flex: 0 0 100%;
    max-width: 420px;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .auth-right-pane {
        flex: 0 0 420px;
        margin: 0;
    }
}

.premium-login-card {
    background: var(--white, #ffffff);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
    padding: 48px 40px;
    text-align: center;
    backdrop-filter: blur(10px);
}

[data-bs-theme="dark"] .premium-login-card {
    background: var(--secondary, #1e293b);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.premium-login-card .login-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary, #0f172a);
    font-family: inherit;
}

.premium-login-card .login-subtitle {
    color: var(--text-secondary, #64748b);
    margin-bottom: 2rem;
    font-size: 0.95rem;
    font-family: inherit;
}

.btn-google {
    background: var(--white, #ffffff);
    border: 1px solid var(--border, #e2e8f0);
    color: var(--text-primary, #0f172a);
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    transition: all 0.2s ease;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.95rem;
}

[data-bs-theme="dark"] .btn-google {
    background: var(--bg-bgsecondary, #0f172a);
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--text-primary, #f8fafc);
}

.btn-google:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border-color: var(--primary, #1a73e8);
}

.login-terms {
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: var(--text-secondary, #64748b);
    line-height: 1.5;
    font-family: inherit;
}

.login-terms a {
    color: var(--primary, #1a73e8);
    text-decoration: none;
    font-weight: 600;
}

.login-terms a:hover {
    text-decoration: underline;
}
