.auth-wrapper {
    position: relative;
    z-index: 1;
    min-height: calc(100vh - 65px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.auth-card {
    width: 100%;
    max-width: 400px;
    padding: 36px 32px;
    background: var(--color-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--color-glass-border);
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.auth-header {
    text-align: center;
    margin-bottom: 28px;
}

.auth-header h1 {
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 6px;
}

.auth-header p {
    font-size: 14px;
    color: var(--color-text-dim);
    margin: 0;
}

.auth-form-error {
    background: rgba(255, 124, 124, 0.1);
    border: 1px solid rgba(255, 124, 124, 0.25);
    color: #ff9c9c;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    margin-bottom: 18px;
    display: none;
}

.auth-form-error.visible {
    display: block;
}

.auth-footer {
    text-align: center;
    margin-top: 22px;
    font-size: 13px;
    color: var(--color-text-dim);
}

.auth-footer a {
    color: var(--color-pale-rose);
    font-weight: 600;
}

.auth-footer a:hover {
    text-decoration: underline;
}

.btn[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}
