body.auth-page {
    background: #f5f6f7;
}

.auth-wrap {
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.auth-card {
    width: 100%;
    max-width: 420px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    padding: 32px 28px;
}

.auth-title {
    margin: 0 0 10px 0;
    font-size: 32px;
    font-weight: 800;
    color: #111827;
}

.auth-desc {
    margin: 0 0 24px 0;
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.auth-form input {
    width: 100%;
    height: 48px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    padding: 0 14px;
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.auth-form input:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.12);
}

.auth-btn {
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 10px;
    background: #0d6efd;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}

.auth-btn:hover {
    background: #0b5ed7;
}

.auth-links {
    margin-top: 18px;
    text-align: center;
    font-size: 14px;
    color: #6b7280;
}

.auth-links a {
    color: #0d6efd;
    font-weight: 600;
}

.auth-links a:hover {
    text-decoration: underline;
}

@media (max-width: 480px) {
    .auth-card {
        padding: 24px 18px;
        border-radius: 12px;
    }

    .auth-title {
        font-size: 28px;
    }
}