﻿html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

.card-login-container {
    left: 0px;
    top: 0px;
    position: absolute;
    background: linear-gradient(180deg, #FFFFFF 40.63%, #DEF2FF 100%);
}

.card-login {
    background: #FFFFFF;
    /* Shadow 1 */

    box-shadow: 0px 4px 20px 2px rgba(0, 0, 0, 0.13);
    border-radius: 20px;
}

.card-login_image {
    max-height: 36px;
    width: auto;
}

.card-login_title {
    font-style: normal;
    font-weight: 800;
    font-size: 24px;
    line-height: 29px;
    /* identical to box height */

    text-align: center;
    color: #0066B3;
}

.card-login_form-input h5 {
    /* Tài khoản */
    /* Heading 5 */
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 26px;
    /* identical to box height, or 162% */
    /* Neutral 3 */

    color: #606060;
}

.card-login_form-input input {
    /* Input */

    box-sizing: border-box;
    /* Auto layout */

    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 12px;
    gap: 293px;
    width: 100%;
    background: #FFFFFF;
    border: 1px solid #D7D7D7;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
}

    .card-login_form-input input::placeholder {
        /* Body Regular 5 */

        font-style: normal;
        font-weight: 400;
        font-size: 14px;
        line-height: 22px;
        /* identical to box height, or 157% */
        /* Neutral 4 */

        color: #BBBBBB;
    }

    .card-login_form-input input:focus {
        outline: none !important;
        border: 1px solid #0066B3;
        box-shadow: 0 0 1px #0066B3;
    }

.card-login_form-input i {
    font-size: 20px;
    position: absolute;
    color: #918585;
    right: 10px;
    top: 50%;
    transform: translate(0, -50%);
}

.card-login_lable {
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    /* identical to box height, or 157% */
    cursor: pointer;
    color: #0066B3;
    display: inline-block;
    text-align: end;
}

.card-login_form-input input::-ms-reveal {
    display: none;
}

.card-login_button {
    color: #fff;
    background: #0066B3;
    border-radius: 8px;
}

@keyframes rotate-one {
    0% {
        transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
    }

    100% {
        transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
    }
}

@keyframes rotate-two {
    0% {
        transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
    }

    100% {
        transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
    }
}

@keyframes rotate-three {
    0% {
        transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
    }

    100% {
        transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
    }
}

.loaderLogin {
    position: fixed;
    justify-content: center;
    align-items: center;
    display: flex;
    z-index: 9999; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0,0,0,0.3); /* Black w/ opacity */
}

.loadermini {
    position: absolute;
    animation: rotate 1s infinite;
    height: 50px;
    width: 50px;
}

    .loadermini:before,
    .loadermini:after {
        border-radius: 50%;
        content: '';
        display: block;
        height: 20px;
        width: 20px;
    }

    .loadermini:before {
        animation: ball1 1s infinite;
        background-color: #cb2025;
        box-shadow: 30px 0 0 #f8b334;
        margin-bottom: 10px;
    }

    .loadermini:after {
        animation: ball2 1s infinite;
        background-color: #00a096;
        box-shadow: 30px 0 0 #97bf0d;
    }

@keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg) scale(0.8);
        -moz-transform: rotate(0deg) scale(0.8);
    }

    50% {
        -webkit-transform: rotate(360deg) scale(1.2);
        -moz-transform: rotate(360deg) scale(1.2);
    }

    100% {
        -webkit-transform: rotate(720deg) scale(0.8);
        -moz-transform: rotate(720deg) scale(0.8);
    }
}

@keyframes ball1 {
    0% {
        box-shadow: 30px 0 0 #f8b334;
    }

    50% {
        box-shadow: 0 0 0 #f8b334;
        margin-bottom: 0;
        -webkit-transform: translate(15px,15px);
        -moz-transform: translate(15px, 15px);
    }

    100% {
        box-shadow: 30px 0 0 #f8b334;
        margin-bottom: 10px;
    }
}

@keyframes ball2 {
    0% {
        box-shadow: 30px 0 0 #97bf0d;
    }

    50% {
        box-shadow: 0 0 0 #97bf0d;
        margin-top: -20px;
        -webkit-transform: translate(15px,15px);
        -moz-transform: translate(15px, 15px);
    }

    100% {
        box-shadow: 30px 0 0 #97bf0d;
        margin-top: 0;
    }
}