/* Estilos generales */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: linear-gradient(to right, #1e3c72, #2a5298);
    color: white;
    text-align: center;
}

/* Contenedor del formulario */
.form-container {
    position: relative;
    background: rgba(0, 0, 0, 0.8);
    padding: 30px;
    border-radius: 10px;
    width: 380px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
}

/* Estilo del botón de información */
.info-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #007bff;
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.info-button:hover {
    background-color: #0056b3;
}

/* 🔹 Posiciona el icono en la esquina superior derecha */
.info-container {
    position: absolute;
    top: 10px;
    right: 10px;
}

.info-icon {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.banner {
    width: 250px; /* Cambia esto según el tamaño que desees */
    height: auto; /* Mantiene la proporción */
    margin-top: 10px; /* Opcional: separa un poco del logo */
}

/* 🔹 Efecto hover */
.info-icon:hover {
    transform: scale(1.1);
}

/* Estilo de la ventana emergente */
.info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
}

.info-content {
    background: #252525;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 300px;
    color: white;
}

.close-btn {
    position: relative;
    display: flex;
    top: 10px;
    right: 10px;
    font-size: 18px;
    cursor: pointer;
}

.close-btn:hover {
    color: #FFD700;
}



/* Inputs */
input {
    width: 90%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
}

/* Botón */
button {
    width: 100%;
    padding: 10px;
    background: #28a745;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s;
}

button:hover {
    background: #218838;
}

/* Links */
p {
    margin-top: 15px;
}

a {
    color: #00c3ff;
    text-decoration: none;
}





