html,
body,
#app {
    height: 100%;
    background-color: white;
}

.layout {
    background: url('/recursos/imagenes/Login_bg.png') no-repeat fixed;
    display: grid;
    grid-template-columns: 1fr 506px;
    padding: 0;
    margin: 0;
    height: 100%;
}

.form-container {
    background-color: white;
    padding: 2rem 0;
    box-shadow: 11px 0 10px 10px #00000071;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: auto;
}

.form {
    height: min(100%, 742px);
    min-height: 370px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    width: min(100%, 298px);
    align-items: center;
}

    .form > * {
        flex-shrink: 1;
    }

.sidebar {
    height: 100%;
    font-size: 2rem;
    text-align: center;
    background: url(/recursos/imagenes/Login_bg.png) no-repeat fixed;
    background-size: cover;
    background-position: left center;
}

html::-webkit-scrollbar {
    display: none;
}

.avatar-container {
    background-color: #D4FFF5;
    height: 125px;
    width: 125px;
    border-radius: 100%;
    position: relative;
    text-align: center;
}

    .avatar-container i {
        font-size: 70px;
        position: relative;
        top: 10px;
        color: #11B6AF;
    }

.form__boton-login {
    background-color: #41C58C;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    color: white;
    height: 60px;
    /* transition: font-size .2s; */
}

    .form__boton-login:hover {
        color: white;
        font-size: 19px;
    }

.titulo {
    color: gray;
    font-size: 30px;
    font-weight: 800;
    color: #3D504B;
}
.minititulo {
    font-size: 13px;
    color: #879693;
}
.form-group {
    margin-bottom: 2.5rem;
}

    .form-group:last-child {
        margin-bottom: 0;
    }

.form-control {
    font-size: 1rem;
    font-family: 'opensans-regular';
    letter-spacing: -0.48px;
    color: #424242 !important;
    background: transparent;
    border: none;
    border-bottom: 2px solid gray;
    border-radius: 0;
    opacity: 1;
    width: 320px;
    height: 34px;
    margin-bottom: 10px;
    vertical-align: middle !important;
    padding: 0;
}

    .form-control:focus {
        background-color: transparent;
        box-shadow: none;
    }

.form-usuario__input {
    text-transform: lowercase;
    border: none;
    border-radius: 0;
    background-color: transparent;
    box-shadow: none;
    border-bottom: 1px solid #777777;
    padding-left: 3rem;
    width: 100%;
}

.title-inputs {
    font: normal normal 600 18px/24px 'opensans-bold';
    color: #777777;
}

.input-icono {
    height: 17px;
}


.has-feedback {
    position: relative;
}

.form-control-feedback {
    height: 32px !important;
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    font-size: 20px;
    pointer-events: none;
}

.error-icon {
    display: none;
}

.has-error .error-icon {
    display: flex;
}

.form-control-feedback-right {
    left: 100%;
    margin-left: -34px;
    font-size: 12px;
}

.circular-icon {
    border-radius: 100%;
    background-color: currentColor;
    width: 12px;
    height: 12px;
    position: relative;
}

    .circular-icon i {
        color: white;
        top: 0;
        position: absolute;
        left: -2.5px;
        line-height: 0;
        width: 0;
    }

.has-error input {
    border-bottom-color: var(--alert-color);
}

.has-error .form-control:focus {
    border-bottom-color: var(--alert-color);
}

.has-error .form-control-feedback {
    color: var(--alert-color);
}

.logo {
    display: grid;
    place-items: center;
}

    .logo img {
        width: 120px;
        color: #11A97E;
        /*filter: grayscale(1);*/
    }

.validation-summary-errors {
    color: var(--alert-color);
    font-size: 14px;
    font-family: 'opensans-semibold';
}

.boton {
    width: 100%;
}

@media all and (max-width: 1366px) {
    .layout {
        grid-template-columns: 1fr 408px;
        grid-template-rows: 100%;
    }

    .form-container {
        padding: 1rem 0 2rem 0;
    }

    .form {
        width: min(100%, 258px);
    }

    .titulo {
        font-size: 24px;
    }

    .form__boton-login {
        margin-top: 1rem;
    }
}

@media all and (max-width: 1024px) {
    .layout {
        grid-template-columns: 1fr minmax(40%, 332px);
        grid-template-rows: 100%;
    }
}

@media all and (max-device-aspect-ratio: 1/1), all and (orientation: portrait) {
    .layout {
        background: var(--login-bg-color);
        grid-template-columns: 1fr minmax(50%, 540px) 1fr;
        grid-template-rows: 100%;
    }

    .sidebar {
        background: none;
    }

    .form-container {
        box-shadow: 0px 0px 20px -10px #000000;
    }

    .form-container {
        justify-content: center;
    }
}
