:root {
    --white: #fff;
    --red: #B00020;
    --text-gray: #3e3e3e;
    --light-gray: #f4f4f4;
    --blue: #29abe2;
    --hover-blue: #2398c9;
    --border: rgba(0, 0, 0, .12);
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
}

body {
    color: var(--text-gray);
    font-weight: 400;
    font-size: 0.9rem;
    background-color: var(--white);
}

.full-width {
    width: 100%;
}

.container-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.row {
    width: 100%;
}

.navbar-brand {
    max-width: 80px;
    width: 100%;
}

.logo-image {
    width: 100%;
}

.navbar-brand-middle {
    max-width: 100px;
    width: 100%;
}

.logo-image-middle {
    width: 100%;
}

.nav-link {
    color: var(--text-gray) !important;
}

.blue-background {
    background-color: var(--blue);
    box-shadow: 0px 3px 6px -2px rgba(0, 0, 0, 0.16);
    border: 1px solid var(--blue);
    border-right: none;
}

.no-padding {
    padding: 0 !important;
}

.login-card {
    margin-top: 40px;
}

.card-wrapper,
.card-wrapper-login {
    padding: 10px;
    padding-top: 20px;
    position: relative;
    height: 100%;
}

.card-wrapper-login {
    padding-left: 30px;
}

.intro {
    color: var(--white);
}

.intro-bottom {
    color: var(--white);
    position: absolute;
    bottom: 0px;
}

.white-background {
    background-color: var(--white);
    padding-right: 30px;
    box-shadow: 0px 3px 6px -2px rgba(0, 0, 0, 0.16);
    border: 1px solid #eeeeee;
    border-left: none;
}

.heading {
    color: var(--text-gray);
    font-weight: 500;
    font-size: 24px
}

.col-form-label {
    padding-top: calc(0.375rem + 1px);
    padding-bottom: 0;
    margin-bottom: 0;
    font-size: inherit;
    line-height: 1.6;
}

.primary {
    background-color: var(--blue);
    border-radius: 5px !important;
    color: var(--white);
    border: none;
    box-shadow: none;
    padding: 0.375rem 0.75rem;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.6;
}

.primary:hover {
    background-color: var(--hover-blue);
    border-radius: 5px !important;
}

.primary:focus {
    background-color: var(--hover-blue);
    opacity: 0.9;
}

.tertiary {
    color: var(--blue);
    border-radius: 5px !important;
    border: none;
    box-shadow: none;
    padding: 0.375rem 0.75rem;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.6;
}

.tertiary:hover {
    color: var(--hover-blue);
}

.tertiary:focus {
    color: var(--hover-blue);
    opacity: 0.9;
}


/* .form-control {
    display: block;
    width: 100%;
    height: calc(1.6em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-gray);
    background-color: var(--white);
    background-clip: padding-box;
    border: 1px solid var(--border);
    border-radius: 5px;
}

.form-control:focus {
    border: 1px solid var(--blue);
    box-shadow: none;
} */

.card-header {
    background-color: var( --light-gray);
}