:root {
    --dark-background: #1A1F21;
    --dark-background-light: #1f2629;
    --dark-color: white;
    --dark-border-color: #CECECE3B;
    --input-focus-border: #56bef8;
    --font-hint-color: #00A3FF;
}

body {
    background: var(--dark-background);
    color: var(--dark-color);
    font-family: 'Montserrat' !important;
    font-style: normal;
}

.border-bottom {
    border-bottom: none !important;
}

.card {
    background: var(--dark-background-light);
    color: var(--dark-color);
    border:1px solid var(--dark-border-color) !important;
    border-radius: 10px;
}

.form-control, .form-control:focus {
    padding: 20px;
    font-family: 'Montserrat' !important;
    font-style: normal;
    color: var(--dark-color);
    border: 1px solid var(--dark-border-color) !important;
    border-radius: 10px;
    background: var(--dark-background) !important;
}

    .form-control:focus {
        border: 1px solid var(--input-focus-border) !important;
    }
input {
    color-scheme: dark;
}

input:-webkit-autofill,
input:-webkit-autofill:focus {
    color: var(--dark-color) !important;
    border: 1px solid var(--dark-border-color) !important;
    border-radius: 10px;
    background: var(--dark-background) !important;
}

.switch {
    vertical-align: middle;
    height: 18px;
    width: 40px;
    margin-left: 10px;    
}

    .switch .slider::before {
        height: 15px;
        width: 15px;
        
    }


.list-group, .list-group-item {
    background: transparent !important;
    color: var(--dark-color) !important;
}

.btn-primary {
    padding: 5px 15px;
    background-image: linear-gradient(45deg, #5a9ff9, #394ff1);
    border-radius: 10px;
}

    .btn-primary:focus {
        box-shadow: none !important;
    }

.btn-outline-primary {
    padding: 5px 15px;
    border-radius: 10px;
    color: #589af9;
    border: 1px solid var(--dark-border-color) !important;
}

    .btn-outline-primary:hover {
        color: var(--dark-color);
        background-color: #589af9;
    }

    .dropdown-menu {
        background: var(--dark-background-light) !important;
        color: var(--dark-color) !important;
        border: 1px solid var(--dark-border-color) !important;
    }

.dropdown-item {
    color: var(--dark-color);
}
    .dropdown-item:focus, .dropdown-item:hover {
        background-color: #ffffff12;
        color: var(--dark-color);
    }


    .alert-sm {
        padding-top: 0.5em !important;
        padding-bottom: 0.5em !important;
    }

.text-small {
    font-size:14px;
}
.hidden {
    display: none;
}

.center-in-parent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,25%);
}

.top-in-parent {
    position: absolute;
    top: 0;
    width: 100%;
    left: 0;
}

.no-border {
    border:none;
}

.slick-input {
    border-bottom: 1px solid lightgray;
    border-top: none;
    border-right: none;
    border-left: none;
}

    .slick-input:focus {
        border-bottom: 1px solid #008cba;
        border-top: none;
        border-right: none;
        border-left: none;
        box-shadow: none;
    }

.login-card-body {
    padding:2rem;
}

.login-label {
    margin-bottom: 1em;
}

.login-btn {
    font-size:14px;
}

.login-font {
    font-size:13px;
}

a {
    font-weight: 500;
    color: #56BEF8;
}