.auth-page {
    background: #f1f5f9;
}

.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 20px;
    background:
        radial-gradient(circle at 15% 15%, rgba(220, 38, 38, 0.06), transparent 40%),
        radial-gradient(circle at 85% 85%, rgba(220, 38, 38, 0.05), transparent 40%),
        #f1f5f9;
}

.auth-box {
    width: 100%;
    max-width: 440px;
}

.auth-logo {
    text-align: center;
    margin-bottom: 24px;
}

.auth-logo-img {
    height: 56px;
    width: auto;
}

.auth-card {
    background: #ffffff;
    border: 1px solid #e9edf3;
    border-radius: 22px;
    padding: 40px 36px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}

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

.auth-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 6px;
    letter-spacing: -0.02em;
}

.auth-subtitle {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    box-sizing: border-box;
    height: 50px;
    padding: 0 16px;
    font-size: 0.95rem;
    color: #0f172a;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 13px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.form-input::placeholder {
    color: #94a3b8;
}

.form-input:focus {
    border-color: #dc2626;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.12);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: inherit;
    font-weight: 700;
    cursor: pointer;
    border: none;
    border-radius: 13px;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn-primary {
    background: #dc2626;
    color: #ffffff;
}

.btn-primary:hover {
    background: #b91c1c;
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(220, 38, 38, 0.32);
}

.auth-submit {
    width: 100%;
    height: 52px;
    font-size: 1rem;
    margin-top: 4px;
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 26px 0;
}

.auth-divider-line {
    flex: 1;
    height: 1px;
    background: #e2e8f0;
}

.auth-divider-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.auth-footer {
    text-align: center;
}

.auth-footer-text {
    font-size: 0.9rem;
    color: #64748b;
    margin: 6px 0;
}

.auth-link {
    color: #dc2626;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s;
}

.auth-link:hover {
    color: #b91c1c;
    text-decoration: underline;
}

@media (max-width: 480px) {
    .auth-card {
        padding: 32px 22px;
    }

    .form-row {
        flex-direction: column;
        gap: 18px !important;
    }
}
