:root {
    --sidebar-bg: #0b0b0b;
    --sidebar-text: #ffffff;
    --primary-color: #ff7a00;

    --green: #00b56a;
    --blue: #00b4d8;
    --red: #ff3d3d;
    --orange: #ff9800;

    --card-bg: #ffffff;
    --body-bg: #f1f3f5;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
html,
body {
    font-family: "Poppins", sans-serif !important;
}

img {
    max-width: 100%;
}

body {
    background: var(--body-bg);
}

.text-primary {
    color: var(--primary-color) !important;
}

.auth-card {
    width: 100%;
    max-width: 450px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
}

.btn-toggle {
    font-size: 28px !important;
    border: 0 !important;
    box-shadow: none !important;
    background-color: transparent;
    transition: all 0.3s ease;
    padding: 10px 14px !important;
}

.btn-toggle:hover {
    background-color: #e4e4e4;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.card {
    color: #616d81;
    box-shadow: 0 0 2rem 0 rgba(136, 152, 170, 0.15);
    border-radius: 1rem;
    border: 0;
    background: #fff;
    transition: all 0.3s ease;
    /* overflow: hidden; */
}

.form-control,
.form-select {
    font-weight: 500;
    font-size: 14px;
    line-height: 150%;
    color: rgb(140, 140, 140);
    box-shadow: none !important;
    background: rgb(245, 245, 245);
    border-width: 2px;
    border-style: solid;
    border-color: rgb(218, 218, 218);
    border-image: initial;
    border-radius: 8px;
    padding: 10px 16px;
}

.form-check-input {
    box-shadow: none !important; 
    border-width: 2px;
    border-style: solid;
    border-color: var(--primary-color) !important; 
    border-radius: 8px; 
}

.form-check-input:checked {
    background-color: var(--primary-color) !important;
}

.btn {
    padding: 10px 24px;
    transition: all 0.2s ease;
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    border-radius: 8px;
    border-width: 2px;
}

.btn:hover {
    box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset,
        rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
        rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
    transform: translateY(-2px);
    transition: all 0.2s ease;
}

.btn-primary {
    color: rgb(255, 255, 255);
}

.btn-primary {
    border-width: 2px;
    border-style: solid;
    border-color: var(--sidebar-bg);
    border-image: initial;
    background: var(--sidebar-bg);
}

.btn.btn-action {
    background: #fff;
    box-shadow: none !important;
    width: 37px;
    height: 37px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 0 2px !important;
    border: 1.5px solid #e1e4eb;
    border-radius: 12px;
    color: #7c8aa1;
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus-visible {
    box-shadow: none;
    color: var(--sidebar-bg) !important;
    transition: 0.3s;
    background: rgb(255, 255, 255) !important;
    border-width: 2px !important;
    border-style: solid !important;
    border-color: var(--sidebar-bg) !important;
    border-image: initial !important;
}

.form-label {
    font-weight: 600;
    font-size: 14px;
    line-height: 150%;
    color: rgb(78, 78, 78);
}