@import url("https://fonts.googleapis.com/css?family=Poppins:200,200i,300,300i,400,400i,500,500i,600,600i,700&display=swap");

body{
    padding: 0;
    margin: 0;
    font-family: "Poppins", sans-serif;
    /*background-image: url("../img/bg-login.png");*/
    /*background-size: cover;*/
    /*background-repeat: no-repeat;*/
}
div.background{
    background-image: url("../img/bg-login1.jpg");
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    width: 100%;
}
div.background .blur {
    background: rgba(26, 26, 27, 0.7);
    backdrop-filter: blur(1px);
    height: 100vh;
    width: 100%;
}
.pointer{
    cursor: pointer;
}
.box-login{
    display:table;
    position: absolute;
    width: 50vw;
    height: 50vh;
    top: 25%;
    left: 25%;
    box-shadow: 2px 2px #bbbaba;
    background-color: #e6e3e3;
    /*background-color: #c7c5c5;*/
    border-top-right-radius: 12px;
    border-bottom-left-radius: 12px;
}
.box-login .formulario{
    vertical-align:middle;
    display:table-cell;
    padding: 20px;
    padding-bottom: 0px;
}
.box-login .rodape{
    font-size: 12px;
}
.box-login .formulario input{
    background: transparent;
}


@media (max-width:576px) {
    .box-login{
        width: 100vw;
        height: 100vh;
        top: 0;
        left: 0;
        border-top-right-radius: 0px;
        border-bottom-left-radius: 0px;
    }
    .box-login .rodape{
        font-size: 14px;
    }
}

/*BOTOES*/
.btn-cinza{
    border-radius: 0;
    background-color: #6c757d;
    border-color: #6c757d;
    color: white;
}
.btn-cinza:hover{
    border-radius: 0;
    background-color: transparent;
    border-color: #6c757d;
    color: #6c757d;
}
.btn-vermelho{
    background-color: #DD4B39;
    border-color: #D73925;
    color: white;
    border-radius: 0;
}
.btn-vermelho:hover{
    background-color: transparent;
    border-color: #D73925;
    color: #D73925;
}
.btn-laranja{
    background-color: #F39C12;
    border-color: #E08E0B;
    color: white;
    border-radius: 0;
}
.btn-laranja:hover{
    background-color: transparent;
    border-color: #E08E0B;
    color: #F39C12;
}

.btn-azul-escuro{
    background-color: #001F3F;
    border-color: #001326;
    color: white;
    border-radius: 0;
}
.btn-azul-escuro:hover{
    background-color: transparent;
    border-color: #001326;
    color: #001F3F;
}
.azul-claro{
    color: #0167d3;
}
.btn-azul-claro{
    background-color: #007bff;
    border-color: #0167d3;
    color: white;
    border-radius: 0;
}
.btn-azul-claro:hover{
    background-color: transparent;
    border-color: #007bff;
    color: #007bff;
}
.btn-azul-marinho{
    background-color: #17a2b8;
    border-color: #17a2b8;
    color: white;
    border-radius: 0;
}
.btn-azul-marinho:hover{
    background-color: transparent;
    border-color: #17a2b8;
    color: #17a2b8;
}
.btn-verde{
    background-color: #00A859;
    border-color: #018F50;
    color: white;
    border-radius: 0;
}
.btn-verde:hover{
    background-color: transparent;
    border-color: #018F50;
    color: #00A859;
}
/*BOTOES*/

.select2-selection{
    height: 40px !important;
    border: 1px solid #ced4da !important;
}
.select2 .select2-selection__rendered{
    padding-top: 5px;
}
div.form-floating label{
    padding-left: 24px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow{
    right: 15px;
}