.login-body {

    background-color: #E0E1E1;
    font-family: Poppins, sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;

    background: url("/TripsNavigator/javax.faces.resource/trips-header-horizontal-web.jpg.xhtml?ln=tripsnavigator-images");
    background-size: cover;
    background-position-x: center;

}

@media only screen and (max-width: 768px) {
    .login-body {

        background-color: #E0E1E1;
        font-family: Poppins, sans-serif;
        min-height: 100vh;
        display: flex;
        justify-content: center;

        background: url("/TripsNavigator/javax.faces.resource/trips-header-vertical-web.jpg.xhtml?ln=tripsnavigator-images");
        background-size: cover;
        background-position-x: center;

    }
}

.form {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}


.container {
    display: flex;
    flex-direction: column;
    gap: 1rem;

    border-radius: 10px;
    border: 2px solid #ffffff00;
    background: transparent;
    backdrop-filter: blur(20px);
    padding: 1rem;


    margin: 1rem;

    box-shadow: 0 0 5px #ffae2e, 0 0 15px #ffae2e, 0 0 25px #f5c171, 0 0 100px #E0E0E0;

    width: clamp(400px, 75%, 600px);

}

.container h2 {

    color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("https://tripsnavigator.com/wp-content/uploads/2024/02/trips-navigator-logo-white.png");
    height: 75px;


}

.container h3, .container h1 {
    color: white !important;
    font-weight: 800 !important;
}


.login-input {
    position: relative;
    margin-top: 0.7rem;
    border: solid;
    border-color: white;
    border-width: 0.5px;
    border-radius: 8px;
    background: #00000045;
}

.login-input i {
    position: absolute;
    color: #ffae2e;
    font-size: 20px;
    top: 50%;
    right: 0.5rem;
    margin-top: -8px;
    font-weight: 800 !important;
}

.login-input span {
    width: 100% !important;
}

.input {
    background-color: transparent !important;
    color: white !important;
}

.input:hover,
.input:focus {
    border-color: rgba(255, 255, 255, 0) !important;
    box-shadow: 0 0 0 0 !important;
}

.input-label {
    color: white !important;
    font-weight: 800 !important;
    font-size: 18px !important;
    text-shadow: #000000 1px 0 10px;
}


.login-button {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none !important;
    color: #fff !important;
    background-color: #ffae2e !important;
    outline: 2px solid #ffae2e !important;
    border-color: #ffae2e !important;
    padding: 30px 60px;
    overflow: hidden;
    transition: all 0.5s; /* Aplica la transición a todas las propiedades durante medio segundo */
    width: 100%;
    height: 50px;
    position: relative;
}

.login-button:hover {
    background-color: #ffc947; /* Cambia el color de fondo al hacer hover */
    transform: scale(1.05); /* Aumenta ligeramente el tamaño del botón al hacer hover */
}












