/* Estilo general de la página */
body {
    font-family: sans-serif;
    background-color: #d22d2d;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

/* Tarjeta contenedora blanca */
.card {
    background: rgb(255, 254, 254);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;

}

/* Título */
h2 {
    color: #333;
    margin-bottom: 20px;
}

/* Cajas de texto */
input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}


/* Botón de conexión */
button {
    background-color: #e12121;
    color: rgb(252, 252, 252);
    border: none;
    padding: 12px;
    width: 100%;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

/* Mensajes de respuesta */
#mensaje {
    margin-top: 15px;
    font-weight: bold;
}