.ss-login-wrapper {
    min-height: 100vh;
    background: #7b5e4a;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Optional decorative images */
.ss-login-wrapper::before {
    content: "";
    position: absolute;
    left: 0;
    top: 40px;
    width: 300px;
    height: 300px;
    background: url('/catalog/view/stylesheet/assets/images/mandala.svg') no-repeat center/contain;
    opacity: 0.2;
}

.ss-login-wrapper::after {
    content: "";
    position: absolute;
    right: -50px;
    bottom: -250px;
    width: 600px;
    height: 600px;
    background: url('/catalog/view/stylesheet/assets/images/mandala.svg') no-repeat center/contain;
    opacity: 0.2;
}

/* ===== CARD ===== */
.auth-box {
    background: #ffffff;
    padding: 40px 35px;
    border-radius: 15px;
    width: 100%;
    max-width: 450px;
    text-align: center;
    z-index: 2;
}

/* ===== TEXT ===== */
.auth-box h4 {
    font-size: 26px;
    margin-bottom: 10px;
    font-weight: 600;
}

.auth-box p {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
}

/* ===== INPUT ===== */
.form-group {
    text-align: left;
    margin-bottom: 20px;
}

.form-group label {
    font-size: 14px;
    margin-bottom: 6px;
    display: block;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    outline: none;
    font-size: 14px;
}

/* ===== BUTTON ===== */
.btn-otp {
    width: 100%;
    padding: 14px;
    background: #dc3545;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    transition: 0.3s;
}

.btn-otp:hover {
    background: #c82333;
}

/* ===== RESEND ===== */
.resend {
    margin-top: 10px;
}

.resend a {
    font-size: 13px;
    color: #333;
    text-decoration: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 576px) {
    .auth-box {
        margin: 0 25px;
        padding: 30px 20px;
    }

    .ss-login-wrapper::before {
        width: 200px;
        height: 200px;
        top: 20px;
    }

    .ss-login-wrapper::after {
        width: 300px;
        height: 300px;
        bottom: -150px;
        right: -50px;
    }

    .auth-box h4 {
        font-size: 22px;
    }
}