body {

    margin: 0;

    font-family: Arial;

    text-align: center;

    background: #0A3D91; /* azul sólido */

    color: white;

}



.container {

    padding: 40px;

}



/* LOGO 50% MÁS GRANDE */

.logo {

    width: 270px;

}



/* FORMULARIO CENTRADO */

form {

    display: flex;

    flex-direction: column;

    align-items: center;

}



/* CAMPOS MÁS ANGOSTOS */

input, textarea {

    width: 50%;

    margin: 10px;

    padding: 10px;
        
    border-radius: 8px;

    border: none;

}
textarea {

    height: 140px;

}



/* BOTÓN AZUL CON TEXTO BLANCO */

button {

    width: 50%;

    padding: 10px;

    background: #0A3D91;

    color: white;

    border: none;

    cursor: pointer;

    font-weight: bold;

}



button:hover {

    background: #062c66;




}


footer {

    font-size: 75%;

    color: #4da3ff; /* azul más claro que el fondo */

    margin-top: 25px;

}
