body {
    height: 100vh;
    /* background: #342C6D; */
    margin: 0;
}

.login-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: row;
}

.left-box {
    background: #f3f5fa;
    display: flex;
    flex-direction: column;
    padding: 3rem;
    height: auto;
    /* allow it to grow */
}

.left-box .login-card {
    flex: 1 1 auto;
    /* allow content to grow */
}

body {
    overflow-y: auto;
    /* ensure body scrolls if needed */
}

.login-text {
    color: #6c63ff;
}

.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: #b6d6f7; */
    /* background: #342C6D; */
    background-image: linear-gradient(
            rgba(143, 197, 251, 0.5),
            rgba(111, 183, 255, 0.5)
        ),
        url("../images/icons/big-circles-2.png");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
    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;
}

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

.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 */
}

.process-wrapper {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem 1rem;
    text-align: center;
}

.step-box {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    text-align: left;
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 3.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.step-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 34px;
    flex-shrink: 0;
    margin-right: 1.25rem;
}

.step-1 .step-icon {
    background: #2a8cff;
}

.step-2 .step-icon {
    background: #c046a3;
}

.step-3 .step-icon {
    background: #2a8cff;
}

.step-content h5 {
    margin: 0;
    font-weight: 600;
    color: #4a3fc6;
}

.step-content p {
    margin: 0.25rem 0 0;
    font-size: 0.95rem;
    color: #333;
}

/* vertical connector line */
.step-box::after {
    content: "";
    position: absolute;
    left: 58px;
    /* aligns with center of larger circle */
    top: 100%;
    width: 4px;
    height: 60px;
    border-radius: 2px;
}

.step-1::after {
    background: linear-gradient(to bottom, #2a8cff, #c046a3);
}

.step-2::after {
    background: linear-gradient(to bottom, #c046a3, #2a8cff);
}

.step-3::after {
    display: none;
}

/* ✅ 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;
        /* reduce padding for smaller screen */
    }

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

.intl-tel-input {
    width: 100%;
}

.verify-card {
    width: 65%;
    max-width: none !important;
}
.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;
}
.iti {
    width: 100%;
}

#password-rules li {
    list-style: none;
}
