.login-page, .register-page{
    background: white;
    /* background: linear-gradient(0deg, rgba(130,22,66,1) 0%, rgba(238,37,39,1) 100%); */
}
.login-box .btn-login{
    background: linear-gradient(90deg, #811643, #ed2224);
    color:#fff;
    border:none;
    border-radius: 30px;
}
.login-box .btn-login.loading{
    animation: animatedBackground 2s linear infinite;
}
.login-box, .register-box{
    width: 460px;
}
.login-box .card{
    box-shadow: initial;
    background: linear-gradient(0, transparent 0%, #777777);
    padding: 1px;
    border-radius: 16px;
}
.login-card-body, .register-card-body{
    background: linear-gradient(0deg, #fcfcfc 0%, #e6e6e6 100%);
    border-radius: 15px;
    padding: 40px;
}
.login-logo, .register-logo{
    margin-bottom: 2.9rem;
}
.login-box .loginError{
    color:#ee2527;
} 
.login-box .mb-1{
    padding-top:10px;
}
.login-box .mb-1 a{
    color:#787878;
}
.separador-social-auth {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    text-transform: uppercase;
    border: none;
    font-size: 12px;
    font-weight: 500;
    margin: 0;
    padding: 24px 0 0;
}
.separador-social-auth:after, .separador-social-auth:before {
    content: "";
    border-bottom: 1px solid #c2c8d0;
    flex: 1 0 auto;
    height: 0.2em;
    margin: 0;
}
.separador-social-auth span {
    text-align: center;
    flex: 0.2 0 auto;
    margin: 0;
}
.social-auth {
    margin-top: 24px;
    margin-bottom: 24px;
}
#auth-microsoft {
    display: flex;
    position: relative;
    background: #fff;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-size: 16px;
    font-family: inherit;
    height: 52px;
    border: 1px solid #c2c8d0;
    border-radius: 3px;
    color: #2d333a;
    cursor: pointer;
    outline: 0;
    transition: box-shadow .15s ease-in-out,background-color .15s ease-in-out;
}
#auth-microsoft:hover {
    box-shadow: inset 0 0 0 150px rgba(0,0,0,.1);
}
.logo-microsoft {
    background-image: url('../img/logo_microsoft.svg');
    display: inline-block;
    margin-right: 10px;
    width: 20px;
    height: 20px;
    position: relative;
}
.error-login {
    margin-top: 5px;
    color: red !important;
}

@keyframes animatedBackground {
    0% {
        -moz-box-shadow: 0 0 0 0 rgb(204 44 44 / 40%);
        box-shadow: 0 0 0 0 rgb(204 44 44 / 40%);
    }
    70% {
        -moz-box-shadow: 0 0 0 10px rgb(204 44 44 / 0%);
        box-shadow: 0 0 0 10px rgb(204 44 44 / 0%);
    }
    100% {
        -moz-box-shadow: 0 0 0 0 rgb(204 44 44 / 0%);
        box-shadow: 0 0 0 0 rgb(204 44 44 / 0%);
    }
}