/* RESET BÁSICO */

/* RESET BÁSICO */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

/* BODY */
body {
    background-color: #f2f4f8;
    color: #333;
    line-height: 1.6;
}

/* HEADER */
header {
    background-color: #0b3c5d;
    color: white;
    padding: 20px;
    text-align: center;
}

header h1 {
    margin-bottom: 10px;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* MAIN */
main {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

/* FORMULARIO */
.contenedor-formulario {
    background-color: white;
    padding: 30px;
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

form {
    display: flex;
    flex-direction: column;
}

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

form input,
form select,
form textarea {
    margin-top: 5px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

form textarea {
    resize: vertical;
    min-height: 100px;
}

/* RADIOS */
form input[type="radio"] {
    margin-right: 5px;
}

/* BOTÓN */
form input[type="submit"] {
    margin-top: 25px;
    background-color: #1abc9c;
    color: white;
    border: none;
    padding: 12px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
}

form input[type="submit"]:hover {
    background-color: #17a589;
}

/* FOOTER */
.footer {
    background-color: #0b3c5d;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 40px;
}

 
   
