﻿body {
}

.main-container-login {
    height: 100%;
    width: 100%;
    display: flex;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    box-sizing: border-box;
}

.login-section {
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-items: center;
    backdrop-filter: blur(5px);
    box-sizing: border-box;
    position: relative;
}

.container-card-login {
    /* height: 100%; */
    width: 100%;
    border-right: 1px solid #1E1E1E;
    display: flex;
    align-items: center;
    justify-content: center;
}

form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px
}

.card-login {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /*width: 500px;*/
    width: auto;
    padding: 10px;
}

input {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal;
}

.container-loghi {
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
}

.logo-section {
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.card-login-logo-docs {
    display: none;
    width: auto;
}

.card-login-logo-cliente {
    display: block;
}

.logo-cliente-mobile {
    /*position: absolute;
    bottom: 0px;*/
    width: 100%;
    display: none;
}

.input-group {
    width: 100%;
    display: flex;
    position: relative;
    gap: 5px;
}

.show-pass {
    cursor: pointer;
    position: absolute;
    right: 12px;
    top: calc(50% - 10px)
}

.input-custom {
    box-sizing: border-box;
    width: 100%;
    height: 65px;
    border-radius: 8px;
    outline: none;
    border: none;
    padding: 20px;
    color: white;
    font-size: 14px;
    background: none;
    border: 1px solid #2e2e2e;
    backdrop-filter: blur(5px);
}

.test-environment {
    font-size: 16px;
    margin-bottom: 5px;
}

.title-login {
    font-size: 39px;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
}

.description-login {
    margin-bottom: 50px;
    text-align: center;
    font-size: 16px;
}

.lost-password {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: start;
    /* margin-bottom: 50px; */
}

.container-button {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

    .container-button a {
        text-decoration: none;
        font-weight: bold;
    }

.button {
    cursor: pointer;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    height: 65px;
    border-radius: 8px;
    transition: all 0.2s ease-in-out;
    font-size: 13px;
    font-family: 'Montserrat';
}

    .button:hover {
        transform: translateY(-1px);
        transition: all 0.2s ease-in-out;
    }

.logo-docs {
    max-height: 100%;
    max-width: 100%;
}

canvas {
    display: inline;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    max-height: 100%;
    max-width: 100%;
}

.docs-version {
    margin-top: 20px;
    width: 100%;
    font-weight: lighter;
    font-size: 12px;
    text-align: center;
    line-height: 16px;
}


@media only screen and (max-width: 1100px) {
    .logo-docs {
        width: 400px;
        height: auto;
    }
}

@media only screen and (max-width: 750px) {

    .logo-section {
        display: none;
    }

    .login-section {
        width: 100%;
        backdrop-filter: blur(0px);
        background: none;
    }

    .lost-password {
        margin-bottom: 20px;
    }

    .logo-docs {
        width: 400px;
        height: auto;
    }

    .container-button {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .title-login {
        font-size: 24px;
    }

    .description-login {
        font-size: 12px;
        margin-bottom: 40px;
    }

    .container-loghi {
        display: flex;
        flex-shrink: 0;
        flex-direction: column;
        align-items: center;
        margin-bottom: 20px;
        gap: 15px;
        justify-content: center;
        margin-bottom: 40px;
    }

        .container-loghi img {
            width: 80%;
            height: auto;
            object-fit: scale-down;
        }

    .card-login-logo-cliente {
        display: none;
    }

    .button {
        height: 50px;
    }

    .card-login-logo-docs {
        display: block;
        width: 120px;
        height: auto;
    }

    .card-login {
        width: 100%;
    }

    .main-container-login {
        background-image: url(/Content/Images/onda.png);
    }

    .logo-cliente-mobile {
        /*position: absolute;
        bottom: 20px;*/
        width: 100%;
        display: flex;
        align-items: center;
        flex-direction: row;
        justify-content: center;
        height: 60px;
    }

        .logo-cliente-mobile .card-login-logo-cliente {
            display: block;
        }

    canvas {
        display: none;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        width: 100%;
        height: 100%;
    }
}

.dm-login-page-error-text {
    margin-right: 8px;
    font-size: 18px;
}

.dm-login-mask-type-credentials,
.dm-login-mask-type-remember-password {
    width: 500px;
    max-width: 100%;
}