*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, Helvetica, sans-serif;
}

body{
background:#f2f4f8;
min-height:100vh;
display:flex;
justify-content:center;
align-items:center;
}

/* MAIN CONTAINER */

.login-container{
width:90%;
max-width:900px;
background:#fff;
border-radius:12px;
overflow:hidden;
display:flex;
box-shadow:0 0 20px rgba(0,0,0,.1);
}

/* LEFT PANEL */

.left-panel{
width:50%;
background:#0f2c59;
color:white;
padding:40px;
display:flex;
flex-direction:column;
justify-content:center;
}

.logo{
font-size:28px;
font-weight:bold;
display:flex;
align-items:center;
gap:10px;
margin-bottom:30px;
}

.logo-circle{
width:15px;
height:15px;
background:#ffc107;
border-radius:50%;
}

.promo-text{
font-size:22px;
margin-bottom:25px;
}

.left-panel ul{
list-style:none;
line-height:2;
font-size:14px;
}

/* RIGHT PANEL */

.right-panel{
width:50%;
padding:40px;
}

.right-panel h2{
margin-bottom:20px;
color:#0f2c59;
}

form{
display:flex;
flex-direction:column;
gap:10px;
}

label{
font-size:13px;
color:#444;
}

input{
padding:10px;
border-radius:6px;
border:1px solid #ccc;
outline:none;
}

input:focus{
border-color:#0f2c59;
}

/* GENDER */

.form-group{
margin-top:10px;
}

.gender{
display:flex;
gap:20px;
margin-top:5px;
}

/* BUTTON */

button{
margin-top:15px;
padding:12px;
border:none;
border-radius:8px;
background:#0f2c59;
color:white;
cursor:pointer;
transition:.3s;
}

button:hover{
background:#163f7a;
}

/* RESPONSIVE */

@media(max-width:768px){

.login-container{
flex-direction:column;
}

.left-panel,
.right-panel{
width:100%;
padding:30px;
}

.promo-text{
font-size:18px;
}

}