.customer-login-section {
    min-height: 78vh;
    padding: 70px 0;
    background:
        radial-gradient(circle at top left, rgba(28, 105, 157, .15), transparent 35%),
        radial-gradient(circle at bottom right, rgba(28, 105, 157, .10), transparent 35%),
        linear-gradient(135deg, #f7fbff 0%, #eef7fd 100%);
    position: relative;
    overflow: hidden;
}

.customer-login-card {
    background: rgba(255, 255, 255, .96);
    border: 1px solid rgba(28, 105, 157, .16);
    border-radius: 28px;
    padding: 34px;
    box-shadow: 0 25px 70px rgba(28, 105, 157, .14);
    position: relative;
    overflow: hidden;
}

.customer-login-card::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, rgba(28, 105, 157, .16), rgba(28, 105, 157, .08));
    border-radius: 50%;
    right: -70px;
    top: -70px;
}

.login-icon {
    width: 70px;
    height: 70px;
    border-radius: 22px;
    background: linear-gradient(135deg, #1C699D, #15557F);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 14px 30px rgba(28, 105, 157, .28);
}

.customer-login-title {
    color: #12384f;
    font-size: 26px;
    font-weight: 800;
}

.customer-login-subtitle {
    color: #64748b;
    font-size: 14px;
}

.customer-login-card .form-label {
    font-weight: 700;
    color: #334155;
    margin-bottom: 8px;
}

.customer-login-card .input-group {
    border-radius: 16px;
    box-shadow: 0 8px 22px rgba(15, 23, 42, .05);
}

.customer-login-card .input-group-text {
    background: #f1f8fd;
    border: 1px solid #d7eaf5;
    border-right: 0;
    border-radius: 16px 0 0 16px;
    color: #1C699D;
    width: 48px;
    justify-content: center;
}

.customer-login-card .form-control {
    height: 50px;
    border: 1px solid #d7eaf5;
    border-left: 0;
    border-radius: 0 16px 16px 0;
    color: #1e293b;
    font-weight: 600;
}

.customer-login-card .form-control:focus {
    border-color: #1C699D;
    box-shadow: 0 0 0 4px rgba(28, 105, 157, .12);
}

.forgot-link {
    color: #1C699D !important;
    font-weight: 700;
    font-size: 14px;
}

.forgot-link:hover {
    color: #15557F !important;
}

.customer-login-btn,
.customer-login-btn:focus,
.customer-login-btn:active {
    height: 52px;
    border: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, #1C699D, #15557F);
    color: #fff !important;
    font-weight: 800;
    letter-spacing: .2px;
    box-shadow: 0 14px 30px rgba(28, 105, 157, .25);
    transition: .25s ease;
}

.customer-login-btn:hover {
    background: linear-gradient(135deg, #15557F, #124A6E);
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(28, 105, 157, .32);
}

.customer-login-btn i,
.customer-login-btn:hover i,
.customer-login-btn:focus i,
.customer-login-btn:active i {
    color: #fff !important;
}

.register-box {
    background: #f1f8fd;
    border: 1px dashed rgba(28, 105, 157, .28);
    border-radius: 18px;
    padding: 18px;
}

.register-btn,
.register-btn:focus,
.register-btn:active {
    border-radius: 14px;
    border: 1px solid #1C699D !important;
    background: #fff !important;
    color: #1C699D !important;
    font-weight: 800;
    padding: 10px 22px;
    text-decoration: none !important;
}

.register-btn:hover {
    background: #1C699D !important;
    border-color: #1C699D !important;
    color: #fff !important;
}

.register-btn i {
    color: inherit !important;
}

.register-btn:hover i,
.register-btn:focus:hover i {
    color: #fff !important;
}

.register-box p {
    color: #334155 !important;
}

@media (max-width: 575px) {
    .customer-login-section {
        padding: 35px 0;
    }

    .customer-login-card {
        padding: 24px 18px;
        border-radius: 22px;
    }

    .customer-login-title {
        font-size: 23px;
    }

    .login-icon {
        width: 62px;
        height: 62px;
        border-radius: 19px;
    }
}