/* Estilos básicos */
body {
    font-family: 'Open Sans', Arial, sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
}

h1 {
    text-align: center;
    font-size: 2rem;
    color: #333;
}

/* Contenedor del formulario */
.contenedor-formulario {
    background-color: #ffffff;
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    position: relative;
    z-index: 10;
    margin-top: 9%;
    margin-bottom: 1%;
}

.contenedor {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    width: 100%;
    padding: 20px;
}

/* Estilos de entrada */
form label {
    font-size: 1rem;
    color: #555;
    margin-bottom: 5px;
    display: block;
}

form input, form textarea {
    width: 95%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

form input:focus, form textarea:focus {
    border-color: #007BFF;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

/* Botón */
.button {
    background-color: #007BFF;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    width: 100%;
    text-align: center;
}

.button:hover {
    background-color: #0056b3;
}

/* Estilos del pie de página */
/* Estilos del pie de página (sin cambios) */
.footer {
    background-color: #1a2a3a;
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}
.footer strong{
    font-size:18px;
}
.footer-section.left {
    text-align: left;
    margin-left: 5%;

}

.footer-section.center {
    text-align: left;
}

.footer-section.right {
    text-align: left;
    margin-right: 5%;
}

.footer-section a {
    color: rgb(0, 166, 255);
    text-decoration: none;
}

.footer-section a:hover {
    text-decoration: underline;
}

/* Estilos del menú responsive */
:root {
    --primary-color: #1a2a3a;
    --secondary-color: #2c3e50;
    --accent-color: #4a90e2;
    --text-light: #f8f9fa;
    --text-dark: #2c3e50;
    --transition-speed: 0.3s;
    --border-radius: 6px;
    --hover-brightness: 1.1;
}



@media (max-width: 768px) {
    /* Ajuste para que el formulario no sea tapado por el menú */
    .contenedor {
        margin-top: 15%;
        width: 90%;
    }
    .footer{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer-section.left, .footer-section.center, .footer-section.right{
text-align: center;
padding: 10px;
    }
}
