//
// Theme
//
// Custom variables followed by theme variables followed by Bootstrap variables
// to ensure cascade of styles.
//

// Mute deprecation warnings until a SASS version update is available without having to spam console
$ignore-warning: true;
$enable-deprecation-messages: false;

// Bootstrap functions
@import '~bootstrap/scss/functions';

// Custom theme variables override
@import '../auth/theme/css-variables/bylawyers';
@import '../auth/theme/bootstrap-variables/variables-bylawyers';

// Bootstrap core
@import '../auth/bootstrap/bootstrap';

// Custom theme core including mixins / utilities / features
@import '../auth/theme/mixins/mixins';
@import '../auth/theme/components/components';
@import '../auth/theme/features/auth'; 

.btn-primary {
    color: $white;
    background-color: $secondary;
    border-color: $secondary;

    &:focus,
    &:hover {
        color: $white;
        background-color: $secondary-desat;
        border-color: $secondary-desat;
    }
}
