body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
    font-family: var(--font-main);
}

.auth-page {
    z-index: 10;
    flex: 1 0 auto;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem 3rem;
}

.auth-card {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 420px;
    padding: 3.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(24px) saturate(140%);
    -webkit-backdrop-filter: blur(24px) saturate(140%);
    border: 1px solid var(--glass-border);
    border-radius: 3rem;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.03), inset 0 1px 1px 0 var(--glass-highlight);
}

.auth-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: 3rem;
}

.input-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.input-field {
    width: 100%;
    padding: 1.25rem 1.5rem;
    color: var(--color-dark);
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 1.25rem;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.01);
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s ease;
}

.input-field::placeholder {
    color: rgba(0, 0, 0, 0.3);
}

.input-field:focus {
    background: rgba(255, 255, 255, 0.9);
    border-color: var(--accent);
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.05);
}

.logo-dot {
    width: 8px;
    height: 8px;
}

.btn-primary {
    width: 100%;
    margin-top: 1rem;
    padding: 1.25rem;
    color: #ffffff;
    background: #292524;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1.25rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #57534e;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
}

.back-link {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 2.5rem;
    color: #78716c;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

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