/* ===== RESET ===== */
*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Inter',sans-serif;
background:#f6f9fc;
color:#333;
}

/* ===== CONTENEDOR ===== */
.form-wrapper{
max-width:900px;
margin:60px auto;
padding:0 20px;
}

/* ===== HEADER ===== */
.form-header{
text-align:center;
margin-bottom:30px;
}

.logo-form{
height:80px;
margin-bottom:15px;
}

.form-header h1{
font-size:40px;
font-weight:600;
color:#1a73e8;
margin-bottom:5px;
}


.form-header p{
color:#666;
font-size:24px;
font-weight:500;
}

.form-header img{
width:95px;
height: 95px;   /* tamaño del logo */
margin-bottom:15px;
}


/* ===== TARJETA ===== */
.form-card{
background:white;
padding:45px;
border-radius:15px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

/* ===== SECCIONES ===== */
.form-section{
display:none;
}

.form-section.active{
display:block;
}

/* ===== TITULO PASO ===== */
.form-section h2{
margin-bottom:30px;
}

.step-number{
background:#1a73e8;
color:white;
padding:4px 10px;
font-size:20px;
border-radius:6px;
margin-right:10px;
}


/* ===== INPUTS ===== */
.input-group{
margin-bottom:20px;
}

.input-group label{
display:block;
margin-bottom:8px;
font-weight:500;
}

.input-group input{
width:100%;
padding:12px;
border:1px solid #ddd;
border-radius:8px;
transition:.3s;
}

.input-group input:focus{
outline:none;
border-color:#1a73e8;
}

/* ===== RADIO MODERNO ===== */
.radio-modern{
display:flex;
gap:20px;
margin:15px 0;
}

.radio-modern.vertical{
flex-direction:column;
}

.radio-modern label{
padding:12px 16px;
border-radius:8px;
cursor:pointer;
transition:.3s;
}

.radio-modern input{
margin-right:8px;
}

/* ===== BOTONES ===== */
.nav-buttons{
display:flex;
justify-content:space-between;
margin-top:30px;
flex-wrap:wrap;
gap:10px;
}

.btn{
padding:12px 25px;
border-radius:8px;
font-weight:500;
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px){

.form-card{
padding:30px 20px;
}

.nav-buttons{
flex-direction:column;
}

.btn{
width:100%;
}

.logo-form{
height:60px;
}

}
