/* Fuente y estilos generales */
body {
    font-family: 'Poppins', sans-serif;
    background: rgb(122, 29, 52);
    text-align: center;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

.logo {
    text-align: center;
    margin-bottom: 20px;
}

.logo img {
    width: 100%;
    max-width: 300px; /* Ajusta el tamaño máximo */
    height: auto; /* Mantiene la proporción */
    display: block;
    margin: 0 auto;
}


/* Contenedor principal */
.container {
    background: white;
    max-width: 600px;
    width: 90%;
    margin: auto;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
}

/* Títulos */
h1 {
    color: #75670e;
    text-align: center;
    font-size: 28px;
}

h2 {
    color: #450202;
    text-align: center;
    font-size: 22px;
    margin-bottom: 15px;
}

/* Etiquetas de formulario */
label {
    color: #6b530ae4;
    font-weight: 600;
    display: block;
    margin: 10px 0 5px;
}

/* Input y botón */
input {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    border: 2px solid #a9a212;
    border-radius: 8px;
    font-size: 16px;
    transition: 0.3s;
}

input:focus {
    border-color: #8b0b31d4;
    outline: none;
    box-shadow: 0px 0px 5px rgba(139, 11, 49, 0.5);
}

button {
    background: #5e5e07d4;
    color: white;
    padding: 12px;
    border: none;
    width: 100%;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    transition: 0.3s;
    margin-top: 10px;
}

button:hover {
    background: #a09414;
    transform: scale(1.05);
}

/* Caja de resultados */
#resultado {
    margin-top: 20px;
    padding: 15px;
    background: #e9ecef;
    border-radius: 8px;
    display: none;
    text-align: center;
}

#resultado p {
    margin: 5px 0;
    font-weight: 500;
    font-size: 16px;
}
