/* Variables CSS para facilitar el cambio de colores */
:root {
    --primary-color: #333233; /* Azul moderno */
    --background-color: #FFF500;
    --card-background: #ffffff;
    --text-color: #333;
    --border-color: #ddd;
    --shadow-light: 0 4px 12px rgba(0, 0, 0, 0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--background-color);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
}

.kiosco-container {
    width: 100%;
    max-width: 600px;
    background-color: var(--card-background);
    padding: 40px;
    box-shadow: var(--shadow-light);
    text-align: center;
}

.logo-area {
    margin-bottom: 25px;
}

.logo {
    width: 25rem;
    height: auto;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    cursor: pointer; 
}

.title {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 1.8em;
    font-weight: 600;
}

.form-group {
    text-align: left;
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-color);
    font-size: 0.95em;
}

.radio-group {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    gap: 20px;
    margin-top: 10px;
}

.radio {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 400;
}

.radio input[type="radio"] {
    margin-right: 8px;
    accent-color: var(--primary-color);
    cursor: pointer;
    width: 28px;
    height: 28px;
}

input[type="text"],
input[type="email"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-sizing: border-box;
    font-size: 1em;
    transition: border-color 0.3s, box-shadow 0.3s;
}

input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.2);
    outline: none;
}

.submit-button {
    width: 100%;
    padding: 15px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    margin-top: 15px;
    transition: background-color 0.3s, transform 0.1s;
    box-shadow: 0 4px 8px rgba(52, 52, 50, 0.3);
}

.submit-button:hover {
    background-color: #343432;
}

.submit-button:active {
    transform: scale(0.99);
}

/* Estilos para el Modal de Salida Oculto */
.modal-overlay {
    display: none; /* Oculto por defecto */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background-color: var(--card-background);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    max-width: 80%;
    box-shadow: var(--shadow-light);
}

.modal-content h2 {
    color: #cc0000; /* Color de advertencia */
    margin-top: 0;
}

.modal-content button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 15px;
}