@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
.card-login{
    margin-bottom: 200px;
}
.bg-danger-login {
    background-color: #EF5350;
    color: #ffffff;
    border-radius: 5px;
    margin-bottom: 10px;
    text-align: center;
    padding: 5px;
}
.bg-danger-login p {
    margin: 0px;
}
.btn-submit-login{
    background-color:#EF5350;
    color:#fff;
    margin-top: 25px;
    transition: all ease 0.5s;
}
.btn-submit-login:hover{
    background-color:#F3715A;
}
.passwd-div-box-log{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 10px;
}
.passwd-box-log{
    background-color: #EF5350;
    width: 100%;
    height: 5px;
    margin: 5px;
}
.box-active-log{
    background-color: #66BB6A;
}
.passwd-div-box-con-log{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    height: 5px;
    background-color: #EF5350;
}
.div-rule-pass{
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color:#262D3C;
    color: #fff;
    padding: 10px;
    margin-top: 10px;
}
.div-login-msg{
    width: 100%;
    display: none;
    background-color:#EF5350;
    padding: 5px;
    margin-bottom: 15px;
    font-weight: bold;
    border-radius: 5px;
    text-align: center;
}
.div-login-msg.active{
    display: block;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    transition: background-color 5000s ease-in-out 0s;
    -webkit-text-fill-color:#fff !important;
}