.wrapper {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

.modal-dialog {
    max-width: 900px;
}

.left-panel {
    width: 50%;
    background: linear-gradient(135deg, #fff7ec, #ffeede);
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-right: 1px solid #f0e2d0;
}

.leftfloatimgboxc img {
    width: 65%;
    margin-bottom: 25px;
    border-radius: 100%;
}

.loginmainpopupbox {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    background: #0000007a;
}

.features {
    width: 100%;
    margin-top: 20px;
    font-size: 15px;
    text-align: start;
}

.features div {
    background: #ffebd0;
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 4px 10px rgba(255, 100, 100, 0.09);
    font-weight: 500;
}

.closeloginpopbox {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}


.right-panel {
    width: 50%;
    padding: 10px 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.loginformbox h4 {
    font-weight: 500;
    margin-bottom: 15px;
    color: #393939;
    font-size: 21px;
}

.loginformbox label {
    color: #747474;
    margin-bottom: 10px;
    font-size: 17px;
}

.loginformbox input::placeholder {
    color: #747474;
    margin-bottom: 10px;
    font-size: 16px;
}

.loginformbox .form-control {
    padding: 8px;
    border-radius: 8px;
    border: 1px solid #ccc;
    margin-bottom: 12px;
    font-size: 15px;
}

.loginformbox .form-control:focus {
    border-color: var(--dynamic-color);
    box-shadow: 0 0 8px var(--dynamic-color);
}

.loginformbox .login-btn {
    background: var(--dynamic-color);
    border: none;
    padding: 14px;
    color: #fff;
    width: 100%;
    border-radius: 14px;
    font-size: 18px;
    margin-top: 10px;
    font-weight: 600;
    letter-spacing: 0.3px;
    box-shadow: 0 5px 12px rgba(255, 0, 0, 0.3);
    transition: 0.2s;
}

.loginformbox .login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px var(--dynamic-color);
}

.loginformbox .google-signin {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 14px;
    padding: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-weight: 500;
    margin-top: 20px;
    transition: 0.2s;
}

.loginformbox .google-signin:hover {
    background: #f8f8f8;
}

.loginformbox .google-signin img {
    width: 22px;
}

.terms-text {
    font-size: 13px;
    margin-top: 10px;
}

@media (max-width: 900px) {
    .wrapper {
        flex-direction: column;
        padding-bottom: 20px;
    }

    .left-panel,
    .right-panel {
        width: 100%;
    }

    .left-panel {
        padding-bottom: 40px;
    }
}

@media (max-width: 600px) {
    .right-panel {
        padding: 30px 25px;
    }

    .left-panel img {
        width: 65%;
    }
}