@import url('https://fonts.googleapis.com/css2?family=Alata&display=swap');

/* Estilos generales */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #f4f7f9;
    color: #333;
    margin: 0;
}

/* Estilos para la cabecera fija */
.site-header {
    background-color: #171796;
    color: white;
    height: 60px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.header-content {
    /* Eliminadas las propiedades de fuente que ya no son necesarias */
}

/* AÑADIDO: Estilos para la imagen del logo en la cabecera */
.header-content img {
    height: 45px; /* Altura para que quepa bien en la cabecera de 60px */
    width: auto; /* Mantiene la proporción de la imagen */
}

/* Contenedor para el contenido principal */
.main-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: calc(100vh - 60px);
    padding: 40px;
}

.container {
    width: 100%;
    max-width: 500px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.container header h1 {
    font-family: 'Alata', sans-serif;
    font-size: 2.2rem;
    color: #1a237e;
    margin-bottom: 8px;
}

.container header p {
    font-size: 1rem;
    color: #555;
}

/* --- El resto de los estilos del formulario permanecen igual --- */
.form-group {
    margin-bottom: 20px;
}
label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #3f51b5;
}
input[type="text"],
select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    box-sizing: border-box; 
    transition: border-color 0.3s, box-shadow 0.3s;
}
input[type="text"]:focus,
select:focus {
    border-color: #3f51b5;
    box-shadow: 0 0 8px rgba(63, 81, 181, 0.2);
    outline: none;
}
button {
    width: 100%;
    padding: 15px;
    background-color: #3f51b5;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}
button:hover {
    background-color: #303f9f;
}
button:active {
    transform: scale(0.98);
}