/* styles.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f4f8;
}

header {
    background-color: #ff0000;
    color: white;
    padding: 20px 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    width: 100px; /* Ajusta el tamaño del logo según sea necesario */
    height: auto;
    margin-right: 20px;
}

.header-text {
    text-align: center;
}

.header-text h1 {
    margin: 0;
    font-size: 2.5rem;
}

.header-text h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: normal;
}

main {
    padding: 20px;
}

section {
    margin-bottom: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

section h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

section h2 i {
    margin-right: 10px;
    color: #007bff;
}

form {
    display: flex;
    flex-direction: column;
}

form label {
    margin-bottom: 5px;
    font-weight: bold;
}

form input, form select {
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

form button {
    background-color: #ff0000; /* Color de fondo azul */
    color: white;
    border: 2px solid black; /* Borde negro de 2px */
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    transition: background-color 0.3s, border-color 0.3s; /* Transiciones para efectos de hover */
}


form button i {
    margin-right: 5px;
}

form button:hover {
    background-color: #0056b3; /* Cambio de color de fondo al pasar el mouse */
    border-color: #004080; /* Cambio del color del borde al pasar el mouse */
}


footer {
    background-color: #ff0000;
    color: white;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
}
