.profile-avatar{
width:60px;
height:60px;
border-radius:50%;
background:#122636;
color:#fff;
display:flex;
align-items:center;
justify-content:center;
font-size:24px;
font-weight:600;
margin-bottom:8px;
}
.gender-box{
display:flex;
gap:10px;
margin-bottom:15px;
}

.gender-card{
flex:1;
cursor:pointer;
}

.gender-card input{
display:none;
}

.card-gender{
border:1px solid #ddd;
border-radius:12px;
padding:14px;
text-align:center;
transition:0.2s;
}

.gender-card input:checked + .card-gender{

border-color:#4f46e5;
background:#f3f4ff;

}