body{
font-family:Arial, sans-serif;
background:#FFB9D5;
display:flex;
justify-content:center;
align-items:center;
height:100vh;
}

.contenedor{
background:white;
padding:35px;
border-radius:15px;
width:420px;
box-shadow:0 5px 20px rgba(0,0,0,.15);
}

h2{
margin-bottom:20px;
}

label{
display:block;
margin-top:15px;
font-weight:bold;
}

input,select{
width:100%;
padding:10px;
margin-top:5px;
border-radius:8px;
border:1px solid #ccc;
box-sizing:border-box;
}

.check{
margin-top:18px;
display:flex;
align-items:center;
gap:10px;
}

.check input{
width:auto;
}

button{
margin-top:20px;
width:100%;
padding:12px;
background:#EF622B;
color:white;
border:none;
border-radius:10px;
font-size:16px;
cursor:pointer;
transition:.3s;
}

button:hover{
background:#EF622B;
}

#mensaje{
margin-top:20px;
text-align:center;
font-weight:bold;
color:green;
}