/* Variables de colores */
:root {
    --primary-color: #00BCD4; /* Azul Turquesa */
    --secondary-color: #004D54; /* Azul Oscuro */
    --background-color: #F5F7FA; /* Gris Claro */
    --text-color: #2C2C2C; /* Gris Oscuro */
    --button-hover: #00796B; /* Verde Oscuro */
}

/* General */
body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
}

.container {
    width: 90%;
    max-width: 800px;
    margin: 2rem auto;
    text-align: center;
}

/* Título */
.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    opacity: 0.8;
}

/* Formulario */
.formulario {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

label {
    display: block;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

input, select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    font-size: 1rem;
    box-sizing: border-box;
}

select {
    cursor: pointer;
}

input::placeholder {
    color: var(--text-color);
    opacity: 0.6;
}

button {
    width: 100%;
    padding: 1rem;
    background-color: var(--primary-color);
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: var(--button-hover);
}
