html,
body {
    min-height: 100%;
}

body.customer-login-page {
    min-height: 100vh;
    margin: 0;
    background:
        radial-gradient(
            circle at top left,
            rgba(13, 110, 253, 0.16),
            transparent 38%
        ),
        linear-gradient(
            135deg,
            #eef3f7 0%,
            #f8fafc 48%,
            #e9f0f5 100%
        );
    color: #1f2933;
}

.customer-login-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

.customer-login-container {
    width: 100%;
    max-width: 460px;
}

.customer-login-card {
    overflow: hidden;
    border: 0;
    border-radius: 1rem;
    background: #ffffff;
    box-shadow:
        0 20px 50px rgba(31, 45, 61, 0.12),
        0 4px 12px rgba(31, 45, 61, 0.08);
}

.customer-login-header {
    padding: 2rem 2rem 1.4rem;
    text-align: center;
    background:
        linear-gradient(
            145deg,
            #1f2d32 0%,
            #263a40 100%
        );
    color: #ffffff;
}

.customer-login-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
    margin-bottom: 1.25rem;
}

.customer-login-brand-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #0d6efd;
    color: #ffffff;
    font-size: 1.55rem;
    box-shadow: 0 8px 22px rgba(13, 110, 253, 0.32);
}

.customer-login-brand-text {
    text-align: left;
}

.customer-login-brand-title {
    margin: 0;
    font-size: 1.55rem;
    font-weight: 700;
    line-height: 1.15;
}

.customer-login-brand-subtitle {
    margin-top: 0.2rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.customer-login-title {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 650;
}

.customer-login-description {
    margin: 0.45rem 0 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.93rem;
}

.customer-login-body {
    padding: 2rem;
}

.customer-login-body .form-label {
    margin-bottom: 0.45rem;
    font-weight: 600;
    color: #364152;
}

.customer-login-body .form-control {
    min-height: 48px;
    border-radius: 0.65rem;
    border-color: #d5dce3;
    padding-left: 0.95rem;
    padding-right: 0.95rem;
}

.customer-login-body .form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.14);
}

.customer-login-input-group {
    position: relative;
}

.customer-login-input-group .form-control {
    padding-right: 3rem;
}

.customer-login-password-button {
    position: absolute;
    top: 50%;
    right: 0.55rem;
    z-index: 5;
    width: 38px;
    height: 38px;
    padding: 0;
    transform: translateY(-50%);
    border: 0;
    border-radius: 0.5rem;
    background: transparent;
    color: #6c7885;
}

.customer-login-password-button:hover {
    background: #eef2f6;
    color: #1f2933;
}

.customer-login-submit {
    min-height: 48px;
    border-radius: 0.65rem;
    font-weight: 600;
}

.customer-login-alert {
    border: 0;
    border-radius: 0.7rem;
    font-size: 0.93rem;
}

.customer-login-footer {
    padding: 1rem 2rem;
    border-top: 1px solid #edf0f2;
    background: #fafbfc;
    text-align: center;
    color: #7a8794;
    font-size: 0.82rem;
}

.customer-login-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 1rem;
    color: #7a8794;
    font-size: 0.82rem;
}

@media (max-width: 575.98px) {
    .customer-login-wrapper {
        align-items: flex-start;
        padding: 1rem;
    }

    .customer-login-header {
        padding: 1.5rem 1.25rem 1.2rem;
    }

    .customer-login-body {
        padding: 1.5rem 1.25rem;
    }

    .customer-login-brand-icon {
        width: 54px;
        height: 54px;
    }

    .customer-login-brand-title {
        font-size: 1.3rem;
    }
}