﻿@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

body {
    padding: 0;
    margin: 0;
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-size: 1.5rem;
    background-color: #f0f3f5;
}

/****** Start Navbar styling ******/

/* custom navbar */
.custom-navbar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 3rem 0.5rem 2rem;
    margin: 0;
    position: fixed;
    background-color: white;
    width: 100%;
    box-shadow: 1px 1px 3px 0px #cccccc;
}

.custom-brand {
    width: fit-content;
}

.svg-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    margin-top: -10px;
}

a {
    color: #2697d3 !important;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
}

a.logo-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    padding: 0;
    width: 115px;
    margin: auto 0;
    transform: none;
}

a.logo-wrapper svg {
    transform: none;
}

.logo {
    border-radius: 7px;
}

.custom-menu {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}

ul.menu {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    list-style-type: none;
    text-decoration: none;
    text-transform: uppercase;
    padding: 0 0 0 1.5rem !important;
    margin: 0;
}

.menu li {
    width: fit-content;
    margin-left: 2rem;
    white-space: nowrap;
}

li {
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

a:hover {
    text-decoration: none;
}

.shadow {
    text-shadow: 1px 1px 1px #c2c2c2;
}

/****** End Navbar styling ******/

/****** Start Welcome/Login styling ******/
/* index styling */
.jumbotron {
    padding: 0 0 1rem;
    margin: 2rem 0;
    background-color: white;
    color: #5297cf;
    text-align: center;
    min-width: 90vw !important;
}

h1 {
    font-size: 4rem;
    padding: 5rem;
    margin: 3rem 0 2rem;
}

.user-header {
    font-size: 4rem;
    padding: 2rem;
    margin: 1rem 0 0;
}

/* body styling */
.body-content {
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    padding: 110px 20px 20px;
    min-height: 750px;
}

.form {
    background-color: white;
    padding: 2rem 3rem 1rem;
    margin: 0;
    border-radius: 10px;
    box-shadow: 1px 1px 2px 0px #969696;
    min-width: 360px;
}

.register {
    padding: 0;
    margin: 0 !important;
}

.header {
    font-size: x-large;
    font-weight: bold;
    text-align: center;
    padding: 0;
    margin: 0;
}

.form-group {
    margin: 0 auto 1rem;
}

label {
    margin-bottom: 3px;
}

.form-control {
    font-size: 1.8rem;
}

.log-btn,
.reg-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.btn-link {
    background-color: #9bc4e0 !important;
    color: black !important;
    font-size: 1.6rem;
    font-weight: bold;
    border: none;
    outline: none;
    padding: 5px 10px;
    margin: 0;
    box-shadow: 1px 1px 2px 0px #969696;
    transition: all 0.2s ease-in-out;
    border-radius: 4px;
    text-decoration: none;
}

.btn-link:hover {
    color: #15396a !important;
    /* primaryColorHov */
    text-decoration: none;
    background-color: #fbbd08 !important;
}

.expand {
    transition: all 0.2s ease-in-out;
}

.expand:hover {
    transform: scale(1.1);
}

.log-text {
    text-align: center;
}

.log-text a {
    font-weight: normal;
}

.tos-link {
    font-weight: 500;
    color: #1588c6;
}

.tos-link:hover {
    cursor: pointer;
}

.tos-list {
    list-style-type: none;
    padding-left: 1rem;
}

li.tos-item {
    padding: 1rem 1rem 0 0;
}

/* End Welcome/Login styling */

/* Start padding/margin styling */
.pb-half {
    padding-bottom: 0.5rem;
}

.pb-1 {
    padding-bottom: 1rem;
}

.pb-1andhalf {
    padding-bottom: 1.5rem;
}

.pt-1 {
    padding-top: 1rem;
}

.pt-2 {
    padding-top: 2rem !important;
}

.pr-half {
    padding-right: 0.5rem;
}

.pr-1 {
    padding-right: 1rem;
}

.pr-2 {
    padding-right: 2rem;
}

.pl-1 {
    padding-left: 1rem;
}

.pl-1andhalf {
    padding-left: 1.5rem;
}

.ml-half {
    margin-left: 0.5rem;
}

.ml-1 {
    margin-left: 1rem;
}

.mr-1 {
    margin-right: 1rem;
}

.mt-1 {
    margin-top: 1rem;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

/* End padding/margin styling */

/* Start User Permissions styling */

.user-permissions-header {
    color: #006ba5 !important;
    /* same as variable $primaryColor */
    text-shadow: 1px 1px 1px #c2c2c2;
    /* same as variable $navbarTextShadow */
    font-weight: 600;
    /* same as variable $fontWeight */
    font-family: "Poppins", sans-serif !important;
    /*  same as variable $fontFamilyMain */
    font-size: 2em !important;
    padding: 1em 0;
    letter-spacing: 1px;
    line-height: 2rem;
}

.user-row-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.user-search-inner-div {
    min-width: 40%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
}

.field {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.filter-label {
    font-weight: 700;
}

.dropdown {
    margin-left: 1rem;
}

.dropdown-toggle {
    /* pulling default from somewhere else? */
}

.user-content {
    display: flex;
    justify-content: center;
    width: 80%;
    margin: 3em auto 0 auto;
    flex-direction: column;
}

.user-row-center {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.user-count {
    margin-top: 2rem;
    color: #fbbd08 !important;
    font-size: 1.5rem;
    font-weight: 600;
}

.bold {
    /* see bottom so it overrides previous weight */
}

tr {
    font-size: 1.5rem !important;
    text-align: left;
}

a.email {
    font-size: 1.5rem;
}

/* End User Permissions styling */

/* Start Update User styling */

.update-user-container {
    background-color: white;
    border-radius: 10px;
    box-shadow: 1px 1px 2px 0px #afafaf;
    width: fit-content !important;
    padding: 0 !important;
}

.user-content {
    padding: 0 2rem;
    width: fit-content;
}

.user-table-div {
    margin-top: 1em;
    -webkit-align-self: center;
    align-self: center;
    height: 50vh;
    overflow-y: auto;
}

.user-table-div2 {
    margin-top: 2em;
    -webkit-align-self: center;
    align-self: center;
    width: fit-content;
}

.user-row-between {
    text-align: center;
    width: fit-content;
}

.center {
    display: flex;
    flex-direction: row;
    justify-content: center !important;
    align-items: center;
}

.user-label {
    color: #006ba5;
    justify-content: center !important;
    text-align: center !important;
    text-shadow: 1px 1px 1px #a2a2a2;
    margin-top: 1em !important;
}

.userTableNormalText {
    color: #555555;
    font-weight: 500;
    text-shadow: none;
}

.userTableBoldText {
    color: #006ba5;
    font-weight: 600;
    text-shadow: none;
}

.user-btn-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}

.user-btn {
    background-repeat: repeat-x !important;
    background-color: #006ba5;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
        0 1px 1px rgba(0, 0, 0, 0.075) !important;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2) !important;
    color: #fff !important;
    font-weight: 500;
    border: 1px solid rgb(26, 70, 130) !important;
    border-radius: 5px;
    padding: 0.5rem 1rem;
}

.bold {
    font-weight: 600 !important;
}

/* End Update User styling */

/****** End Content styling ******/

/******** Start Change Password styling ********/

.password-form {
    padding: 3rem;
    background-color: white;
}

.password-form-group {
    width: 300px;
    margin-bottom: 2rem;
}

.password-form-btns {
    margin-top: 4rem;
}

/******** End Change Password styling ********/

/******** Start Reset/Forgot Password styling ********/

.reset-wrapper {
    background-color: white !important;
    border-radius: 10px !important;
    box-shadow: 1px 1px 2px 0px #afafaf !important;
    width: 600px !important;
    padding: 0 3rem 3rem !important;
}

.reset-title {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-bottom: 2rem;
}

.forgot-title {
    padding-top: 1rem;
}

.reset-form-group {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.reset-label {
    white-space: nowrap;
    margin-right: 1rem;
    width: 15rem;
    text-align: right;
}

.reset-input {
    flex: 1;
}

.reset-button, .forgot-button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.forgot-password {
    margin: 2rem 0 0 !important;
}

/******** End Reset/Forgot Password styling ********/

/****** Start Media Queries ******/
@media (max-width: 768px) {
    a {
        font-size: 1.5rem !important;
    }

    /* Log off button */
    .btn-link {
        font-size: 1.5rem;
    }
}
/****** End Media Queries ******/