﻿@import url('common.css');

/* ----------- VARIABILI ----------- */
:root {
    /* ---- bg image --- */
    --bg-image: url(/public/clienti/system/bg.jpg);
}

/* ----------- BACKGROUND ----------- */
.bg-login {
    background-image: var(--bg-image);
    background-size: cover;
    background-repeat: no-repeat;
}

/* ----------- CONTAINER BOX LOGIN ----------- */
.box-login {
    border-radius: var(--radius-size);
    background-color: var(--bg-box-color);
    min-width: 40%;
    min-height: 95vh;
    display: flex;
    margin-left: 2rem;
    align-items: center;
    justify-content: center;
}

/* ----------- DROPDOWN LIST RADIOBUTTON ----------- */
.multiLoginSelect {
    width: 100%;
}

    .multiLoginSelect input {
        display: none;
    }

    .multiLoginSelect label {
        font-size: var(--child-p-size);
        line-height: 1.6;
        margin-bottom: 0.5rem !important;
        font-family: var(--font-family-bold);
        color: var(--text-color);
        display: flex;
        justify-content: start;
        align-items: center;
        flex-direction: row;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .multiLoginSelect span {
        height: 2rem;
        width: 2rem;
        background-size: contain;
        background-repeat: no-repeat;
        border-radius: 50%;
        margin-right: 2rem;
        background-position: center;
    }

td input:checked ~ label {
    border-left: 0.2rem solid var(--text-color);
    padding-left: 1rem;
}



/* ----------- MEDIA ----------- */
@media(max-width:1500px) {
    .box-login {
        min-width: 60%;
    }
}

@media(max-width:767px) {
    .box-login {
        min-height: 100vh;
        min-width: 100%;
        border-radius: 0;
        margin-left: 0;
    }
}
