:root{
    --blu: #274663;
    --giallo: #D8C1A0;
    --grigio: rgba(211, 211, 211, 0.507);
    font-size: 16px;
    font-family: "Lato";
}

body{
    margin: 0;
    display: flex;
    flex-direction: column;
    height: 100vh;
    background-image: linear-gradient(to bottom right, var(--blu), #4d81b3 60% );
    justify-content: space-between;
}

header{
    background-color: var(--grigio);
    width: 100%;
    border-bottom: 3px solid var(--giallo);
}

header > a{
    padding: 15px;
    display: flex;
    flex-direction: row;
    text-decoration: none;
}

header > a > p {
    font-size: 1.4rem;
    color: white;
}

header > a > img {
    height: 100px;
    width: 140px;
    border-radius: 5px;
    margin-right: 10px;
}

footer {
    text-align: right;
    padding: 20px;
    background-color: rgba(211, 211, 211, 0.274);
    color: white;
    margin-top: 15px;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
}

.form {
    display: flex;
    flex-direction: column;
    font-size: 1.3rem;
    margin: 5px;
    max-width: 400px;
}

.form > label, input{
    border-color: lightgray;
    margin: 8px 0 8px 0;
}

.form > label {
    color: lightgray;
}


.form > button {
    margin: 10px 0 5px 0;
    border-radius: 5px;
    border: 2px solid lightgray;
    font-size: 1.1rem;
    outline: none;
}

.form > button:hover {
    background-color: rgba(141, 141, 141, 0.479);
}


.form > input, .pass_field > input {
    border-radius: 5px;
    border: 3px solid lightgray;
    outline: none;
    font-size: 1.2rem;
}

.form > input:focus, .pass_field > input:focus {
    border-color: var(--giallo);
}

.pass_field {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pass_field > img {
    border: 3px solid lightgray;
    border-radius:  0 5px 5px 0;
    cursor: pointer;
}

.pass_field > input {
    flex-grow: 1;
    border-radius: 5px 0 0 5px;
}

.success {
    padding: 3px;
    border-radius: 5px;
    font-size: 1.3rem;
    background-color: lightgreen;
}

.error {
    font-size: 1.3rem;
    padding: 3px;
    border-radius: 5px;
    background-color: rgb(231, 126, 126);
}


.qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px;
}

.qr-code {
    border-radius: 10px;
    margin-bottom: 20px;
    width: 250px;
    height: 250px;
}

.two-fa-input {
    padding: 10px;
    font-size: 1.2rem;
    border-radius: 5px;
    border: 3px solid lightgray;
    outline: none;
    width: 200px;
    text-align: center;
}

.verify-btn {
    margin-top: 15px;
    padding: 10px 20px;
    font-size: 1.1rem;
    border-radius: 5px;
    border: 3px solid lightgray;
    cursor: pointer;
}

.skip-btn {
    margin-top: 15px;
    padding: 10px 20px;
    font-size: 1.1rem;
    border-radius: 5px;
    border: 3px solid lightgray;
    cursor: pointer;
}

.skip-btn:hover {
    background-color: rgba(141, 141, 141, 0.479);
}


.elenco {
    font-size: 1rem;
    color: white;
}