﻿/************************************ LOGIN  **********************************************/


.login-card {
    background-color: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    max-width: 400px;
    width: 100%;
}

    .login-card h2 {
        font-weight: bold;
        margin-bottom: 1.5rem;
        text-align: center;
        color: #007BFF; /* titolo blu */
    }

.form-control:focus {
    border-color: #28A745; /* verde */
    box-shadow: 0 0 0 0.2rem rgba(40,167,69,.25);
}

.btn-login {
    background-color: #FFC107; /* giallo */
    border: none;
    color: #fff;
    font-weight: bold;
}

    .btn-login:hover {
        background-color: #e0a800;
    }

.text-center a {
    text-decoration: none;
}

    .text-center a:hover {
        text-decoration: underline;
    }

.container_login {
    width: 100%;
    padding-right: var(--bs-gutter-x, 0.75rem);
    padding-left: var(--bs-gutter-x, 0.75rem);
    margin-right: auto;
    margin-left: auto;
}





.login-container {
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    width: 100%;
    max-width: 400px;
}

    .login-card h2 {
        text-align: center;
        margin-bottom: 30px;
        font-weight: bold;
    }

.form-control {
    height: 45px;
    border-radius: 10px;
    font-size: 10px !important;
}

.password-wrapper {
    position: relative;
}

.toggle-password {
    position: absolute;
    top: 70%;
    right: 15px;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 18px;
    user-select: none;
}

.btn-login {
    background-color: #8B0000;
    border: none;
    border-radius: 10px;
    height: 45px;
    font-weight: bold;
    transition: 0.3s;
}

    .btn-login:hover {
        background-color: #A00000;
    }
/************************************ FINE LOGIN  **********************************************/
