﻿* {
    margin: 0px;
    box-sizing: border-box;
}

body {
    height: 100vh;
    width: 100vw;
    background-image: url(../../Images/background.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-clip: content-box;
    position: relative;
    overflow: hidden;
}

body form{
    height:100%;
    width:100%;
    position:relative;

}

#layout-login {
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 20px;
    max-height: 773px;
}


    #layout-login .frm-login-content {
        height: 94%;
    }

.frm-login-content#frm-info-update {
    width: 0px;
    background-color: #00bbff6c;
    padding: 8px 1px 8px 12px;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    transition: width 2s ease-in-out;
    position: relative;
    border-color: #0a4155;
}

.info-update-content {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none;
}

#frm-info-update.show {
    width: max(460px, 40%);
    z-index: 5;
}

    #frm-info-update.show > .div-bookmark {
        opacity: 1;
    }

.info-update-content::-webkit-scrollbar {
    display: none;
}

.info-show {
    opacity: 0;
    visibility: visible;
    transition: all 1s ease-in;
}
    .info-show #up_detail {
        background-color: #fffffff5;
        color: #000;
        padding: 12px 16px;
        border-radius: 4px;
        box-shadow: inset -5px -1px 6px 0px gray;
    }

    .div-bookmark {
        position: absolute;
        right: -14px;
        top: 0px;
        display: flex;
        opacity: 0;
        justify-content: center;
        transition: opacity 3s ease-in;
    }

.footer-frm-info-update {
    min-height: 40px;
    background-color: #fff;
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

#frm-info-update.show .footer-frm-info-update button {
    display: block;
    opacity: 1;
}

.footer-frm-info-update button {
    background-color: transparent;
    border: unset;
    display: none;
    color: #000;
    opacity: 0;
    transition: all 5s linear;
}

#btn-info-update-pm {
    cursor: pointer;
}

.div-bookmark span.fas {
    font-size: 40px;
}

.frm-login-content#frm-login-page {
    background-color: rgba(255, 255, 255, 90%);
    max-width: 420px;
    width: 420px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    gap: 12px;
    padding: 32px 22px 12px 22px;
    border-radius: 8px;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}

    .frm-login-content#frm-login-page #div-login-form {
        width: 100%;
        margin-top: 40px;
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .frm-login-content#frm-login-page #div-login-logo img {
        background-color: transparent;
        mix-blend-mode: darken;
    }

#div-login-form .div-input-login {
    width: 100%;
    position: relative;
}

    #div-login-form .div-input-login span {
        position: absolute;
        left: 4px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 1.2rem;
        color: #00bdff;
    }

        #div-login-form .div-input-login span.span-end {
            left: unset;
            right: 0;
        }

    #div-login-form .div-input-login input {
        width: 100%;
        padding: 4px 4px 4px 28px;
        font-size: 1.3rem;
        font-weight: 500;
        outline: none;
        border: unset;
        border-bottom: 1px solid #000;
        background-color: transparent;
    }

        #div-login-form .div-input-login input:focus-visible {
            outline: none;
        }

input[type="password"] + span.span-end {
    opacity: 0;
}

    input[type="password"]:hover + span.span-end,
    input[type="password"] + span.span-end:hover {
        opacity: 1;
        cursor: pointer;
    }

.btn-login {
    background-color: #00bdff;
    color: #fff;
    font-size: 1.2rem;
    border-radius: 22px;
    text-transform: uppercase;
    padding: 4px 16px;
    font-weight: 500;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    -moz-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}

    .btn-login:hover {
        color: #fff;
    }
    #div-login-form .div-miss-login {
        display: flex;
        justify-content: start;
        gap: 4px;
        align-items: center;
        color: #000;
        font-weight: 500;
    }

#div-login-form input[type="checkbox"] {
    height: 20px;
    width: 20px;
}

#frm-about-company {
    position: absolute;
    left: 200px;
    bottom: 100px;
}




.toolbar-public {
    position: fixed;
    top: 10%;
    left: 12px;
}

#lst-feature-cd {
    min-height: 40px;
    display: flex;
    justify-content: start;
    flex-direction: column;
    gap: 4px;
    background-color: #fff;
    padding: 12px;
    box-shadow: 2px 1px 20px 2px #c5c7c7;
    border-radius: 4px;
    border-top-left-radius: 0px;
    padding-bottom: 16px;
}

    #lst-feature-cd a {
        color: #000;
        text-decoration: none;
    }


@media screen and (max-width: 440px) {
    #frm-about-company {
        display: none;
    }

    #layout-login {
        width: 100vw;
        height: 100vh;
        padding-right: 0px;
        display: block;
        position: relative;
    }

        #layout-login .frm-login-content {
            position: absolute;
            height: 100vh;
            width: 100vw;
            overflow: hidden;
            max-width: unset;
            max-height: unset;
        }

    .frm-login-content#frm-info-update {
        z-index: 5;
        height: 0px;
        transition: height 2s ease-in;
    }

    #frm-info-update.show {
        z-index: 9;
        height: 100%;
        background-color: #188eb9cc;
    }

        #frm-info-update.show .info-show {
            opacity: 1;
        }

        #frm-info-update.show > .div-bookmark {
            display: none;
        }

    .form-login-content#frm-login-page {
        z-index: 7;
        max-width: unset;
        max-height: unset;
    }
    .toolbar-public {
        left: 50%;
        transform: translateX(-50%);
        top: 18px;
        width:100%;
    }
    .toolbar-public button{
        width:100%;
    }
    
}

.loading-form {
    height: 100vh;
    top: 0;
    left: 0;
    width: 100vw;
    position: fixed;
    z-index: 99999999;
    background-color: #cecfcb54;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top:20px;
}

.loading-form .loading-content{
    background-color:#fff;
    padding:20px 20px;
    transition:2s all ease-in-out;
}

