.auth-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.auth-container {
    width: 100%;
    max-width: 420px;
    animation: fadeIn 0.6s ease-out;
}

.auth-box {
    background: white;
    border-radius: 16px;
    padding: 48px 40px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.logo-section {
    text-align: center;
    margin-bottom: 40px;
}

.logo-mark {
    font-size: 32px;
    color: #0f172a;
    margin-bottom: 12px;
}

.brand-name {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.5px;
}

.tab-container {
    display: flex;
    gap: 8px;
    margin-bottom: 32px;
    background: #f8fafc;
    padding: 4px;
    border-radius: 10px;
}

.tab {
    flex: 1;
    padding: 10px 20px;
    border: none;
    background: transparent;
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.tab.active {
    background: white;
    color: #0f172a;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.forgot-password {
    text-align: right;
    margin-top: -8px;
}

.forgot-password a {
    font-size: 13px;
    color: #475569;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.forgot-password a:hover {
    color: #0f172a;
}

.submit-btn {
    padding: 14px;
    background: #0f172a;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 8px;
    transition: all 0.2s ease;
    letter-spacing: 0.01em;
}

.submit-btn:hover {
    background: #1e293b;
}

.divider {
    position: relative;
    text-align: center;
    margin: 32px 0 24px;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e2e8f0;
}

.divider span {
    background: white;
    padding: 0 16px;
    font-size: 13px;
    color: #94a3b8;
    position: relative;
    z-index: 1;
}

.social-buttons {
    display: grid;
    gap: 12px;
}

.social-btn {
    padding: 12px;
    border: 1.5px solid #e2e8f0;
    background: white;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #475569;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.social-btn:hover {
    background: #f8fafc;
}

.social-icon {
    font-size: 12px;
    font-weight: 700;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.logo-mark {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.logo-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
}

.logo-mark {
    width: 28px;
    height: 28px;
    object-fit: contain;
    flex-shrink: 0;
}

.brand-name {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.5px;
    margin: 0;
    padding: 0;
    line-height: 1;
}

.logo-section {
    text-decoration: none;
    color: inherit;
}