@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.logo-appers {
    text-align: center;
    padding-top: 32px;
}

#img-app {
    width: 70px;
}

.container-login {
    display: flex;
    /*height: 100vh;*/
    flex-direction: column;
    justify-content: center;
}

.login-content {
    margin: auto;
    width: 300px;
}

.header-login {
    padding: 1rem;
    margin-bottom: 5px;
    text-align: center;
}

.login-appers {
    background-color: #F6F8FA;
    width: 350px;
    height: auto;
    border-radius: 5px;
    border: solid 0.5px #D8DEE4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 10px;
}

.form-login {
    position: relative;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    padding: 1rem;
}

.group-input {
    padding-left: 5px;
    display: flex;
    flex-direction: row;
    padding-bottom: 10px;
    align-items: end;
}

.label-appers {
    font-size: 12px;
}

.input-login {
    padding: 6px;
    padding-right: 30px;
    border-radius: 6px;
    border: solid 0.5px #D8DEE4;
}

    .input-login:focus {
        outline-color: #1975C5;
    }

.visible-input {
    position: absolute;
    top: 47px;
    right: 25px;
    font-size: 14px;
    cursor: pointer;
    display: none;
    color: #42414D;
}

.btn-submit {
    padding: 10px;
    border-radius: 5px;
    background-color: #1975C5;
    color: white;
    border: 0.5px;
    font-size: 14px;
    cursor: pointer;
    height: 35px;
}

    .btn-submit:hover {
        background-color: #1f7fd3;
    }

    .btn-submit:active {
        background-color: #2e8bdd;
    }

.footer-login {
    padding: 1rem;
    text-align: center;
}

.link-appers {
    color: #1975C5;
    text-decoration: none;
    font-size: 12px;
}

.text-alert {
    box-sizing: border-box;
    margin-top: 10px;
    color: red;
    font-size: 12px;
}

.annotation-alert {
    color: red;
    font-size: 11px;
    padding-left: 5px;
}

.btn-submit.show-loader .btn-loader {
    display: flex;
}

.btn-submit.show-loader .text-btn-submit {
    display: none;
}

.btn-loader {
    display: none;
    flex-direction: row;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin: 0;
    animation: ani 1s ease-in-out infinite alternate;
}


.blue {
    background-color: white;
    animation-delay: .2s;
}

.red {
    background-color: white;
    animation-delay: .4s;
}

.yellow {
    animation-delay: .6s;
    background-color: white;
}

.green {
    animation-delay: .8s;
    background-color: white;
}

.DebugTest{
    position: fixed;
    bottom: 0;
    right: 0;
    padding: 20px;
}

@keyframes ani {
    to {
        transform: translateY(8px);
    }
}

@media (max-width:900px) {
    .login-content {
        margin: 20px;
        width: auto;
        height: 100vh;
    }


    .login-appers {
        width: 100%;
    }

    .btn-submit {
        margin: auto;
        width: 80%;
    }
}