* {
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
}

section {
    display: flex;
    align-items: center;
    height: 100vh;
}

.left-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: center;
    overflow: hidden;
    height: 100vh;
}

.left-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.right-section {
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    right: 0;
    position: absolute;
    height: 100%;
    align-items: center;

}

#SendOTP {
    /* background-color: #FF9933 !important; */
    background: rgb(183, 48, 82) !important;
    background: linear-gradient(120deg, rgba(183, 48, 82, 1) 0%, rgba(230, 38, 63, 1) 100%) !important;
    font-size: 18px !important;
    transition: all 1s;
}

#SendOTP:hover {
    /* background: #a5a29b !important; */
    background: rgb(230, 38, 63) !important;
    background: linear-gradient(90deg, rgba(230, 38, 63, 1) 0%, rgba(183, 48, 82, 1) 100%) !important;
    color: #ffffff !important;
    margin-top: 15px;
}

.form-container {
    width: 60%;
}

.form-footer .login-back a {
    color: #000000 !important;
    font-size: 14px !important;
    align-items: center;
    text-decoration: none;
    display: flex;
}

.form-footer .login-back a:hover {
    text-decoration: underline;
}

.buttons-group {
    display: flex;
    width: 100%;
    justify-content: end;
}

.buttons-group .dx-item-content {
    gap: 10px;
}

.backToLogin {
    font-size: 16px;
    float: right;
}

.dx-texteditor-input-container {
    padding: 5px !important;
}

.dx-form-group-caption {
    font-size: 22px;
}

#VerifyOTP {
    /* background-color: #FF9933 !important; */
    background: rgb(183, 48, 82) !important;
    background: linear-gradient(120deg, rgba(183, 48, 82, 1) 0%, rgba(230, 38, 63, 1) 100%) !important;
    font-size: 18px !important;
    transition: all 1s;
    margin-bottom: 10px;
}

#VerifyOTP:hover {
    /* background: #a5a29b !important; */
    background: rgb(230, 38, 63) !important;
    background: linear-gradient(90deg, rgba(230, 38, 63, 1) 0%, rgba(183, 48, 82, 1) 100%) !important;
    color: #ffffff !important;
}

.dx-form-group-with-caption>.dx-form-group-content {
    padding-top: 19px;
    margin-top: 6px;
    border-top: 1px solid #ddd;
    padding-bottom: 0;
}

/* .password-container .eye-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #888;
    font-size: 22px !important;
} */

/* Media Query for Responsive Design */
@media (max-width: 425px) {
    .left-section {
        display: none;
    }

    .right-section {
        width: 100%;
    }

    .form-container {
        width: 80%;
    }
}

@media (min-width: 428px) and (max-width: 768px) {
    .left-section {
        width: 50%;
    }

    .right-section {
        width: 50%;
    }

    .form-container {
        width: 80%;
    }
}
