<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&amp;family=Jua&amp;display=swap');

body {
    margin: 0;
    padding: 0 auto;
}

#container {
    background: #F0F1F2;
    display: flex;
    flex-direction: row;
    height: 100vh;
    width: 100vw;
}

/* Overlay per dispositivi mobili */
#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(240, 241, 242, 0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1;
}


.overlay-image {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    opacity: 0.05;
}


/* Lato sinistro (con immagine) */
#left-side {
    flex: 1;
    height: 100%;
    overflow: hidden;
}

.login-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Lato destro (con form di login) */
#right-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50%;

}

/* Stile del logo */
/*
#logo-img {
    width: 350px;
    height: auto;
    margin-top: 80px;
    margin-bottom: 48px;
}*/
#logo-img {
    width: 80%;
    height: auto;
    margin-top: 80px;
    margin-bottom: 48px;
    max-width: 350px;
}

.input-fields-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
/* 
.input-field {
    display: flex;
    flex-direction: column;
    margin-left: 15%;
    margin-right: 15%;
    font-size: 14px;
} */

.input-field {
    margin-left: 10%;
    margin-right: 10%;
  }

.input-label {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    color: #5661F6;
}

/* Stile del form di login */
#login_form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    z-index: 1000;
}

.icon {
    width: 14px;
    height: auto;
}

.input-container {
    align-self: stretch;
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: white;
    gap: 12px;
    /* max-width: 600px; */
    border-radius: 50px;
    padding: 10px 6px;
    height: 24px;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.input-container:focus-within {
    border-color: #5661F6 !important;
    color: #5661F6
}

.input-container:hover {
    border-color: rgba(86, 97, 246, 0.5);
}

/* Stile iniziale dei campi di input */
.login-input {
    background-color: white;
    position: relative;
    border: none;
    outline: none;
    font-family: "Jua", serif;
    flex-grow: 1;
    color: #5661F6;
    font-size: 14px;
    min-width: 0;
}

/* Colore attivo su input riempito */
.login-input.filled {
    color: #5661F6;
}

/* Stile iniziale del placeholder e dell'icona */
.login-input::placeholder, .icon-container, .icon {
    color: #ABABAB;
}

/* Icona email/password con cerchio viola dentro l'input */
.icon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ABABAB;
    min-width: 32px;
    height: 32px;
    border-radius: 50px;
    z-index: 5;
}

.eye-icon-container {
    width: 32px;
    height: 32px;
    display: flex;
    margin-right: 4px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

/* Icona occhio per il campo password */
.eye-icon {
    cursor: pointer;
    font-size: 18px;
    color: #ABABAB;
    transition: transform 0.2s ease-in-out;
}

.eye-icon:hover {
    transform: scale(1.1); /* leggero ingrandimento icona occhio all'hover */
}

/* Stile pulsante login disabilitato */
.login-button:disabled {
    background-color: #ABABAB;
    cursor: not-allowed;
}

/* Stile pulsante login abilitato */
.login-button {
    align-self: stretch;
    height: 48px;
    border: none;
    border-radius: 50px;
    color: white;
    font-size: 14px;
    font-family: "Jua";
    margin-left: 10%;
    margin-right: 10%;
    background-color: #5661F6;
    transition: background-color 0.3s;
    margin-top: 48px;
}

/* Hover per pulsante login abilitato */
.login-button:not(.disabled):hover {
    background-color: #757FFA;
}

/* Stile pulsante login disabilitato */
.login-button.disabled {
    background-color: #ABABAB;
    cursor: not-allowed;
}


/*error box */

#error-box {
    position: fixed;
    bottom: 20px;
    right: -300px;
    width: 250px;
    background-color: #F4E3FE;
    color: #BE56F6;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 10px 15px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transition: right 0.5s ease; /* Scorrimento orizzontale */
    transform: translateY(-50%);
}

#error-box.show {
    right: 10px; /* il box esce dal lato dx  */
}

#error-box .icon-cont {
    display: flex;
    align-items: center;
}

#error-box .icon-cont img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

#error-box .error-message {
    flex-grow: 1;
    font-size: 14px;
    line-height: 1.4;
    word-wrap: break-word;
    margin-right: 10px;
    font-family: "Jua";
}

#error-box .close-btn {
    cursor: pointer;
    background: none;
    border: none;
    outline: none;
    padding: 5px;
}


/*--------------------------------------*/

/*MEDIA QUERIES*/


/* tablet 860px */

@media (max-width: 860px) {
    #right-side {
        width: 100%;
    }

    #overlay {
        display: flex;
        width: 100%;
        height: 100%;
    }

    #left-side {
        display: none;
    }

    #logo-img {
        z-index: 5;
    }
}


</pre></body></html>