@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap");

:root,
[data-bs-theme=light] {
    --bs-primary: #6ba647;
    --bs-primary-rgb: 105, 166, 71;
    --bs-secondary: #46566f;
    --bs-secondary-rgb: 70, 86, 111;
    --bs-success: #16a34a;
    --bs-success-rgb: 22, 163, 74;
    --bs-emphasis-color-rgb: 25, 33, 46;
    --bs-border-color: #b9a1a0;

}

[data-bs-theme=dark] {
    --bs-body-bg: #151f32;
    --bs-emphasis-color-rgb: 154, 171, 202;
}

.btn-outline-primary {
    --bs-btn-color: #6ba647;
    --bs-btn-border-color: #6ba647;
    --bs-btn-hover-bg: #6ba647;
    --bs-btn-hover-border-color: #6ba647;
    --bs-btn-active-bg: #6ba647;
    --bs-btn-active-border-color: #6ba647;
    --bs-btn-disabled-color: #6ba647;
    --bs-btn-disabled-border-color: #6ba647;
}

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #6ba647;
    --bs-btn-border-color: #6ba647;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #6ba647;
    --bs-btn-hover-border-color: #6ba647;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #6ba647;
    --bs-btn-active-border-color: #6ba647;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #6ba647;
    --bs-btn-disabled-border-color: #6ba647;
}

.form-control:focus {
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    border-color: #c59b9b;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(107, 166, 71, 0.34);
}

html {
    font-size: 68%;
}


.navbar-nav .nav-link {
    color: white !important;
}

.hero {
    background-color: #969595;
}

table td,
table th {
    padding: 8px 12px !important;
}

table th {
    color: #6ba647 !important;
}

table tbody tr {
    cursor: pointer;
}

table {
    text-align: center !important;
}

table tbody * {
    transition: all .2s ease-in-out;
}

table tbody tr:hover td {
    background: #f2f2f2 !important;
}

.auth {
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    display: grid;
    align-content: center;
    justify-content: center;
}

.auth .card {
    background-color: #f2f2f2c3;
    width: 40rem;
    padding: 4rem;
    border-radius: .2rem 3rem .2rem 3rem;
}

.shadow {
    box-shadow: 0 12px 16px 0 rgba(0, 0, 0, .2), 0 16px 48px 0 rgba(0, 0, 0, .15), 0 0 0 1px rgba(0, 0, 0, .05);
}

.auth img {
    height: 11rem;
}

.auth .card form > div {
    margin-bottom: 2rem;
}

.auth input {
    font-size: 18px;
    padding: 2rem 48px;
    height: 48px;
    line-height: 24px;
    -webkit-font-smoothing: antialiased;
    border-radius: 12px;
    width: 100%;
    border: none;
    outline: none;
}

.auth label {
    width: 100%;
}

.btn-cta {
    padding: 1rem;
    font-size: 1.3rem;
    border-radius: .3rem 2rem .3rem 2rem;
}

.breadcrumb li {
    color: #f2f2f2 !important;
}

.breadcrumb a {
    color: #1f2f14 !important;
    font-weight: bold;
}

.alert-popup {
    position: fixed;
    top: 1rem;
    right: -100rem;
    animation: right-appear .24s ease-in-out forwards, top-disappear .3s ease-in-out 10s forwards;
}


@keyframes right-appear {
    from {
        right: -100rem;
    }
    to {
        right: 1rem;
    }
}

@keyframes top-disappear {
    from {
        top: 1rem;
    }

    to {
        top: -100rem;
    }
}

.auth-form {
    animation: cool-it .25s ease-in-out forwards;
}

@keyframes cool-it {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}