/*! GENERAL */
body {
    margin: 0;
    font-family: "Ubuntu", sans-serif;
    font-weight: 400;
    font-style: normal;
    background: #f4f4f9;
    background-image: url(../img/fondo_hotel.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}
/*! FORMULARIO */
.login-container {
    padding: 2rem 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 25rem;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}
.login-form h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #f4f4f9;
}
/*! GRUPOS DE INPUTS */
.logo-login{
    width: 7rem;
}
.titulo-login{
    display: grid;
    grid-template-rows: auto auto;
    justify-items: center;
}
.input-group {
    margin-bottom: 20px;
}
.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #f4f4f9;
}
.input-group input {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 16px;
}
.input-group input:focus {
    outline: none;
    border-color: #007bff;
    /* border-width: 2px; */
}
input.incorrecto{
    border-color: #fa6c62;
}

/*! BOTON INGRESAR */
button {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 5px;
    background: #007bff;
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}
button:hover {
    background: #0056b3;
}
/*! MENSAJE DE ERROR */
.error-message {
    color: #fa6c62;
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
    font-weight: bold;
}
/*! OTRAS OPCIONES */
.form-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #f4f4f9;
}
.form-footer a {
    color: #007bff;
    text-decoration: none;
}
.form-footer a:hover {
    text-decoration: underline;
}
/*! OTROS */
footer{
    position: fixed;
    color:#dddddd38;
    bottom: 0;
    right: 0;
    padding: 0.3rem;
    user-select: none;
}