body {
    height: 100vh;
    /* background: #6c63ff; */
    background: #342c6d;
    margin: 0;
}

.login-wrapper {
    min-height: 100vh;
}

.left-box {
    background: #f0f5fb;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem;
    border-top-right-radius: 2rem;
    border-bottom-right-radius: 2rem;
    position: relative;
    /* enables absolute positioning inside */
    min-height: 100vh;
    /* or fixed height like 100vh */
    /* background: #f9f9f9; */
    /* your base background */
    overflow: hidden;
    /* prevents shapes from spilling out */
}

.bg-shape {
    position: absolute;
    pointer-events: none;
}

.top-rect {
    top: 0;
    right: 0;
    width: 350px;
}

.bottom-rect {
    bottom: 0;
    left: 0;
    width: 150px;
}

.circle {
    bottom: 0;
    right: 0;
    width: 120px;
}

.login-card {
    width: 100%;
    max-width: 400px;
}

/* ✅ Fix logo size */
.login-card img {
    max-width: 220px;
    max-height: 100px;
}

.login-text {
    margin-top: 100px;
}

.form-control {
    border-radius: 0.5rem;
    padding-left: 2.5rem;
}

.input-group-text {
    background: transparent;
    border: none;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c63ff;
}

.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.btn-login {
    background: linear-gradient(to right, #6c63ff, #6a11cb);
    border: none;
    border-radius: 0.5rem;
}

.btn-login:hover {
    opacity: 0.9;
}

/* ✅ Make right side fill full screen height with padding */
.right-box {
    /* background: #6c63ff; */
    background: #342c6d;
    background-image: linear-gradient(
            rgba(52, 44, 109, 0.84),
            rgba(52, 44, 109, 0.84)
        ),
        url("../images/icons/big-circles.png");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: auto 100%;
    color: #fff;
    min-height: 100vh;
    padding: 3rem 8rem;
    /* equal space all around */
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* match left’s vertical alignment */
}

.right-box h4,
.right-box h5 {
    font-weight: bold;
}

.partners {
    margin-top: 4rem;
    text-align: center;
    margin-bottom: 1rem;
    /* ✅ add spacing below logos */
}

.partners img {
    max-height: 90px;
    margin: 0 4rem;
}

.footer-text {
    font-size: 0.85rem;
    color: #000;
    /* ✅ keep footer well separated */
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding: 0 60px;
    /* ✅ extra spacing between left and right text */
}

.form-label {
    font-weight: 600;
    /* semi-bold */
}

/* ✅ Responsive adjustments */
@media (max-width: 991.98px) {
    .right-box {
        padding: 2rem;
        /* smaller padding on tablet/mobile */
    }

    .partners img {
        max-height: 60px;
        margin: 0 1rem;
    }

    .footer-text {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 0;
        /* reset extra padding */
    }
}

@media (max-width: 767.98px) {
    .left-box {
        padding: 2rem;
        border-radius: 0;
        /* reset rounded edges on mobile */
        border-bottom-left-radius: 2rem;
        /* round bottom corners */
        border-bottom-right-radius: 2rem;
        /* reduce padding for smaller screen */
    }

    .login-card {
        max-width: 100%;
        /* full width on mobile */
    }

    .right-box {
        padding: 2rem 1.5rem;
    }
}
