/* Fondo con imagen */
body {
    margin: 0;
    height: 100vh;
    font-family: Arial, sans-serif;

    background-image: url("/assets/img/ventanaalmundo.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    justify-content: center;
    align-items: center;
}

/* Contenedor del login */
form {
    background: rgba(0, 0, 0, 0.65);
    padding: 35px;
    border-radius: 12px;
    width: 300px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

/* Título */
h2 {
    color: white;
    margin-bottom: 25px;
}

/* Inputs */
input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: none;
    outline: none;
    font-size: 14px;
}

/* Botón */
button {
    width: 100%;
    padding: 10px;
    background: #1f4fd8;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

button:hover {
    background: #163bb0;
}
