

.rgx_register_section{
    width:100%;
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:40px 15px;
}

.rgx_register_wrapper{
    width:100%;
    max-width:1100px;
    display:flex;
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(0,0,0,.18);
}

/* Left */

.rgx_left_panel{
    width:38%;
    background:linear-gradient(90deg, #ff5722, #9c27b0);
    color:#fff;
    padding:30px 35px;
    text-align:center;
    position:relative;
}

/*.rgx_left_panel:before{*/
/*    content:"";*/
/*    position:absolute;*/
/*    width:260px;*/
/*    height:260px;*/
/*    border-radius:50%;*/
/*    background:#087356;*/
/*    top:-80px;*/
/*    left:-80px;*/
/*}*/

.rgx_logo{
    position:relative;
    z-index:2;
}

.rgx_logo h2{
    font-size:30px;
    margin-bottom:50px;
    font-weight:700;
}
.rgx_logo h2 img{
  height: 75px;
  width: 87%;
  background: white;
  padding: 3px;
}
.rgx_left_panel h1{
    position:relative;
    z-index:2;
    font-size:36px;
    margin-bottom:20px;
}

.rgx_left_panel p{
    position:relative;
    z-index:2;
    line-height:28px;
    margin-bottom:35px;
    font-size:16px;
}

.rgx_login_btn{
    position:relative;
    z-index:2;
    display:inline-block;
    padding:12px 45px;
    border:2px solid #fff;
    color:#fff;
    text-decoration:none;
    border-radius:40px;
    transition:.3s;
    font-weight:600;
}

.rgx_login_btn:hover{
    background:#fff;
    color:#0a8d68;
    text-decoration:none;
}

/* Right */

.rgx_right_panel{
    width:62%;
    padding:30px;
}

.rgx_right_panel h2{
    text-align:center;
    color:orangered;
    font-size:34px;
    margin-bottom:30px;
}
.rgx_right_panel h2 img{
  height:60px;
  width:80px;
  
}
.rgx_group{
    margin-bottom:5px;
}

.rgx_group label{
    display:block;
    font-weight:600;
    margin-bottom:8px;
    color:#444;
}

.rgx_input,
.rgx_select{
    width:100%;
    height:50px;
    border:none;
    outline:none;
    border-radius:30px;
    background:#edf8f5;
    padding:0 18px;
    font-size:15px;
    transition:.3s;
}

.rgx_input:focus,
.rgx_select:focus{
    background:#dff5ef;
    box-shadow:0 0 0 3px rgba(10,141,104,.15);
}

/* Checkbox Grid */

.rgx_checkbox_grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:12px;
    margin-top:10px;
}

.rgx_checkbox_grid label{
    background:#edf8f5;
    border-radius:12px;
    padding:12px;
    display:flex;
    align-items:center;
    gap:10px;
    cursor:pointer;
    font-weight:500;
    transition:.3s;
    font-size: 12px;
}

.rgx_checkbox_grid label:hover{
    background:#dff5ef;
}

.rgx_checkbox_grid input[type="checkbox"]{
    width:13px;
    height:13px;
}

/* Terms */

.rgx_terms{
    margin:20px 0;
    font-size:14px;
    line-height:24px;
}

.rgx_terms a{
    color:#0a8d68;
    text-decoration:none;
    font-weight:600;
}

.rgx_terms input{
    margin-right:8px;
}

/* Submit */

.rgx_submit{
    width:100%;
    height:52px;
    border:none;
    border-radius:30px;
    background:linear-gradient(90deg, #ff5722, #9c27b0);
    color:#fff;
    font-size:17px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.rgx_submit:hover{
    background:orangered;
    transform:translateY(-2px);
}

/* Alert */

.mobileexist{
    display:block;
    margin-top:8px;
    font-size:14px;
}

/* Responsive */

@media(max-width:991px){

.rgx_register_wrapper{
    flex-direction:column;
}

.rgx_left_panel,
.rgx_right_panel{
    width:100%;
}

.rgx_left_panel{
    padding:50px 30px;
}

.rgx_right_panel{
    padding:35px 25px;
}

}

@media(max-width:767px){

.rgx_checkbox_grid{
    grid-template-columns:repeat(2,1fr);
}

.rgx_left_panel h1{
    font-size:30px;
}

.rgx_right_panel h2{
    font-size:28px;
}

.rgx_right_panel{
    padding:25px 18px;
}

.rgx_input,
.rgx_select{
    height:48px;
    font-size:14px;
}

.rgx_submit{
    height:48px;
}

.rgx_login_btn{
    width:100%;
    text-align:center;
}

}

@media(max-width:480px){

.rgx_left_panel{
    padding:35px 20px;
}

.rgx_logo h2{
    font-size:24px;
}

.rgx_left_panel h1{
    font-size:26px;
}

.rgx_left_panel p{
    font-size:14px;
}

.rgx_right_panel{
    padding:20px 15px;
}

.rgx_checkbox_grid label{
    font-size:14px;
    padding:10px;
}

}


.form-row{
    display: flex;
    gap: 20px;
    margin-bottom: 1px;
}

.rgx_group{
    flex: 1;
    display: flex;
    flex-direction: column;
}

.rgx_input,
.rgx_select{
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
}

/* Mobile Responsive */
@media (max-width: 768px){
    .form-row{
        flex-direction: column;
    }
}