body {
    background-color: #f4f6f9;
    font-family: 'Roboto', sans-serif;
}

.login-container {
    height: 100vh;
}

.login-form {
    min-width: 300px;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 0px #000;
}

.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    box-shadow: none;
}

.btn-custom {
    background-color: #007bff;
    border: none;
}

.btn-custom:hover {
    background-color: #0056b3;
}

table {
    font-size: 12px;
}

table .btn{
    width: 36px;
}

table .acoes{
    display: flex;
    flex-direction: row;
    gap: 4px;
    align-items: center;
    justify-content: center;
}

@media(max-width: 800px){
    table .acoes{
        flex-direction: column;
    }
}

.select2-container--default .select2-selection--single{
/*    border-radius: 50rem!important;*/
    height: calc(1.5em + 1rem + 2px);
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: 0.3rem;
}

.select2-container--default .select2-selection--single .select2-selection__arrow{
    top: 10px;
    right: 8px;
}

.select2-search__field{
    outline: none;
}