/* ==========================
   ONLYMD Registration CSS
========================== */

/**{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Inter',sans-serif;
    background:#f4f8ff;
    color:#333;
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:100vh;
    padding:30px;
    position:relative;
    overflow-x:hidden;
}*/

/* Container */

.register-container{
    width:1100px;
    max-width:100%;
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    display:flex;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.register-container,
.register-container *{
    text-align:left;
}

/* Left */

.left-panel{
    width:35%;
    background:linear-gradient(135deg,#2792c0,#0b4db6);
    color:#fff;
    padding:50px 35px;
}

.logo{
    width:90px;
    margin-bottom:20px;
}

.left-panel h1{
    font-size:34px;
    margin-bottom:15px;
}

.left-panel p{
    line-height:1.7;
    margin-bottom:25px;
}

.left-panel ul{
    list-style:none;
}

.left-panel li{
    margin:15px 0;
    font-size:15px;
}

.left-panel i{
    margin-right:10px;
}

/* Right */

.right-panel{
    flex:1;
    padding:40px;
}

.right-panel h2{
    text-align:center;
    margin-bottom:25px;
    color:#2792c0;
}

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

.input-group{
    flex:1;
}

.input-group label{
    display:block;
    margin-bottom:6px;
    font-size:14px;
    font-weight:600;
}

input,
select{
    width:100%;
    padding:5px 14px;
    border:1px solid #d5dcef;
    border-radius:8px;
    font-size:15px;
    transition:.3s;
}

input:focus,
select:focus{
    outline:none;
    border-color:#0b6efd;
    box-shadow:0 0 0 3px rgba(13,110,253,.15);
}



/* Checkbox */

.checkbox{
    display:flex;
    align-items:center;
    gap:10px;
    margin:20px 0;
    font-size:14px;
}

.checkbox input{
    width:auto;
}

/* Button */

button{
    width:100%;
    padding:15px;
    border:none;
    border-radius:8px;
    background:#2792c0;
    color:#fff;
    font-size:17px;
    cursor:pointer;
    transition:.3s;
}

button:hover{
    background:#004cc5;
    transform:translateY(-2px);
}

button i{
    margin-left:8px;
}

/* Login */

.login-link{
    text-align:center;
    margin-top:20px;
    font-size:15px;
}

.login-link a{
    text-decoration:none;
    color:#2792c0;
    font-weight:600;
}

/* Mobile */

@media(max-width:900px){

.register-container{
    flex-direction:column;
}

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

.row{
    flex-direction:column;
    gap:15px;
}

.right-panel{
    padding:25px;
}

.left-panel h1{
    font-size:28px;
}

}

/* ==========================
   Plans
========================== */

.plan-box{
    margin:25px 0;
    border:1px solid #dfe7f7;
    border-radius:12px;
    padding:20px;
    background:#fafcff;
}

.plan-box h3{
    margin-bottom:15px;
    color:#2792c0;
    font-size:24px;
}

.plan{
    display:flex;
    align-items:center;
    gap:15px;
    padding:15px 18px;
    border:1px solid #e4e8f2;
    border-radius:10px;
    margin-bottom:12px;
    cursor:pointer;
    transition:.3s;
}

.plan:hover{
    border-color:#2792c0;
    background:#f7fbff;
}

.plan input[type="radio"]{
    width:20px;
    height:20px;
    margin:0;
    flex:none;
    accent-color:#0b6efd;
}

.plan span{
    font-size:18px;
    font-weight:600;
    color:#333;
}