/* Stile per la pagina di Login Modernizzata */

#login_wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('https://www.istarm.it/wp-content/uploads/2014/02/sede2.jpg');
    background-size: cover;
    background-position: center;
    z-index: 9999;
}

/* Oscuramento immagine per far risaltare il pannello */
#login_wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

#login_card {
    position: relative;
    z-index: 2;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 40px;
    width: 350px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

#login_logo_container {
    text-align: center;
    margin-bottom: 30px;
}

#login_logo {
    max-height: 50px;
}

#login_form .input_group {
    margin-bottom: 20px;
}

#login_form label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #4a5568;
    font-size: 13px;
}

#login_form .input_text {
    width: 100%;
    padding: 12px;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    box-sizing: border-box;
    font-size: 14px;
    transition: border-color 0.2s, box-shadow 0.2s;
    font-family: 'Inter', sans-serif;
}

#login_form .input_text:focus {
    outline: none;
    border-color: #3182ce;
    box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.15);
}

#login_form .submit_group {
    margin-top: 30px;
}

#login_form .input_button {
    width: 100%;
    padding: 12px;
    background-color: #006699;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
}

#login_form .input_button:hover {
    background-color: #005580;
}

#login_form .input_button:active {
    transform: scale(0.98);
}