/* --- Estilos Generales --- */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #0d1b2a; /* Azul oscuro principal */
    color: #e0e1dd;
}

/* --- Contenedor Principal para Centrar --- */
.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 20px;
    box-sizing: border-box;
}

/* --- Logotipo --- */
.logo {
    max-width: 180px; /* Ajusta el tamaño de tu logo */
    margin-bottom: 25px;
}

/* --- Formularios --- */
form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* --- Cajas de Texto (Inputs) --- */
input[type="password"],
input[type="text"],
input[type="tel"],
input[type="number"] {
    background-color: #1b263b;
    border: 1px solid #415a77;
    color: #e0e1dd;
    padding: 12px 15px;
    margin-bottom: 15px;
    border-radius: 5px;
    width: 280px;
    font-size: 16px;
    text-align: center;
}

input::placeholder {
    color: #778da9;
}

/* --- Botón de Envío --- */
button {
    background-color: #415a77;
    color: #ffffff;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #778da9;
}

/* --- Mensaje de Éxito --- */
.mensaje-final {
    text-align: center;
    max-width: 500px;
    line-height: 1.6;
    font-size: 18px;
    background-color: rgba(27, 38, 59, 0.8);
    padding: 20px;
    border-radius: 8px;
}