/* Importar fuente de Google */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

/* Estilos generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f4f4f9;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    padding: 20px;
}

/* Estilo del logo */
.logo-container {
    margin-bottom: 15px;
}

.logo {
    width: 320px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.logo:hover {
    transform: scale(1.1);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

/* Contenedor principal */
.container {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 100%;
    max-width: 400px;
}

/* Títulos */
h1 {
    font-size: 24px;
    color: #007BFF;
    margin-bottom: 10px;
}

h2 {
    font-size: 18px;
    margin-bottom: 10px;
}

/* Formulario */
.formulario {
    margin-bottom: 20px;
}

/* Input */
input {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    outline: none;
}

input:focus {
    border-color: #007BFF;
}

/* Botones */
button {
    background: #007BFF;
    color: white;
    padding: 10px;
    margin-top: 10px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s;
}

button:hover {
    background: #0056b3;
}

/* Botón de envío masivo con color diferente */
.btn-masivo {
    background: #28a745;
}

.btn-masivo:hover {
    background: #1e7e34;
}

/* Divider */
.divider {
    height: 2px;
    background: #ddd;
    margin: 20px 0;
}

/* Mensajes de resultado */
#resultado {
    margin-top: 20px;
    font-weight: bold;
}
