/* CSS Document */

/* ================================================== */

:root {
    --main-shade: rgb(205, 240, 190); /*rgb(218,242,208);*/
    --tr-hover: var(--main-shade);
    --tr-bgheader: rgb(215,215,215);
    --red-dark: rgb(150,20,20);
    --blue-dark: rgb(0,0,150);
    --blue-main: rgb(0,0,200);
    /*below should be used for all icons*/
    --green-icons: rgb(0,128,0);
    --green-bmi: rgb(143,216,0);
    --gray-darker: rgb(50,50,50);
    --gray-dark: rgb(100,100,100);
    --gray-medium: rgb(150,150,150);
    --gray-light: rgb(200,200,200);
    --gray-lighter: rgb(230,230,230);
    --bg-biqsue: rgb(250,225,215);
    --bg-orangelight: rgb(245,200,175);
    --bg-orangemedium: rgb(225,100,0);
    --fr-text: rgb(190,80,20);
    /* Success Colors */
    --success-50: #F0FDF4;
    --success-100: #DCFCE7;
    --success-200: #BBF7D0;
    --success-300: #86EFAC;
    --success-400: #4ADE80;
    --success-500: #22C55E;
    --success-600: #16A34A;
    --success-700: #15803D;
    --success-800: #166534;
    --success-900: #14532D;
    /* Neutral Colors */
    --neutral-50: #F8FAFC;
    --neutral-100: #F1F5F9;
    --neutral-200: #E2E8F0;
    --neutral-300: #CBD5E1;
    --neutral-400: #94A3B8;
    --neutral-500: #64748B;
    --neutral-600: #475569;
    --neutral-700: #334155;
    --neutral-800: #1E293B;
    --neutral-900: #0F172A;
    /* Warning Colors */
    --warning-50: #FEFCE8;
    --warning-100: #FFF9C4;
    --warning-200: #FFF59D;
    --warning-300: #FDE047;
    --warning-400: #FDD835;
    --warning-500: #FACC15;
    --warning-600: #F9B914;
    --warning-700: #EAB308;
    --warning-800: #D4A307;
    --warning-900: #713F12;
    --warning-950: #422006;
    /* Primary Colors */
    --primary-50: #E6F7F2;
    --primary-300: #64D7B1;
    --primary-700: #0B7B53;
    --primary-900: #095C3F;
    /* Danger/Error Colors */
    --danger-50: #FEF2F2;
    --danger-100: #FEE2E2;
    --danger-200: #FECACA;
    --danger-300: #FCA5A5;
    --danger-400: #F87171;
    --danger-500: #EF4444;
    --danger-600: #DC2626;
    --danger-700: #B91C1C;
    --danger-800: #991B1B;
    --danger-900: #7F1D1D;
    --danger-950: #450A0A;
    /* Secondary Colors */
    --secondary-50: #E6F9FA;
    --secondary-300: #5AC8D8;
    --secondary-500: #06AED5;
    --secondary-700: #0588A6;
    --secondary-900: #034A5F;
    /* Common Colors */
    --white: #FFFFFF;
    --black: #1D1D1D;
    /* Bordder */
    --border-primary: solid 1px #CBD5E1;
    --border-radius-md: 8px;
}

/* ================================================== */

* {
    box-sizing: border-box;
}

html {
    padding: 0;
    margin: 0;
    font-size: 13px;
}

body {
    background: #fff;
    font-family: sans-serif !important;
    font-size: inherit;
    padding: 0;
    margin: 0;
    padding-bottom: 50px !important;
    min-width: 350px !important;
}

#map {
    max-width: 450px;
    width: 100%;
    height: 100px;
    border: solid 2px var(--gray-dark);
}

h1, h2, h3, h4 {
    color: var(--primary-700) !important;
}

.breadcrumb {
    font-weight: bold !important;
    font-size: 0.9rem !important;
}

/*-----------------------------------------------------------------------------------*/

input[type=text]:focus, input[type=date]:focus, input[type=password]:focus,
input[type=email]:focus, input[type=number]:focus, input[type=time]:focus,
select:focus, textarea:focus {
    outline: solid 1px black;
    box-shadow: 1px 1px 5px 1px rgba(0,128,0,0.85);
    -webkit-box-shadow: 1px 1px 5px 1px rgba(0,128,0,0.85);
    -moz-box-shadow: 1px 1px 5px 1px rgba(0,128,0,0.85 );
}

:disabled {
    color: var(--gray-darker) !important;
}

/*-----------------------------------------------------------------------------------*/
/*Typography*/

.divPar {
    padding: 7px 0;
}

.divPanel {
    padding: 0;
    width: 100%;
    margin: 0;
    display: block;
}

.divBorder {
    padding: 10px;
    border: solid 1px var(--gray-medium);
}

.divButtons {
    padding: 7px 0;
}

form {
    padding: 0;
    border: solid 1px white;
}

.hover:hover {
    background-color: var(--primary-50);
    border-color: var(--primary-700);
}

/*-----------------------------------------------------------------------------------*/

::placeholder {
    color: silver;
    font-size: 0.90rem;
    font-style: italic;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

.hrefSubLink {
    background-color: var(--blue-main);
    color: white;
    padding: 0px 5px;
}


.st_NoUnderline {
    text-decoration: none !important;
}

.button {
    background-color: var(--primary-700);
    color: #fff;
    font-weight: 400;
    font-size: 1.1rem; /*16px;*/
    border: none;
    border-radius: 10px;
    text-align: center;
    height: 40px;
    padding-left: 25px;
    padding-right: 25px;
    cursor: pointer;
    margin-bottom: 5px;
    min-width: 100px;
}

    .button:hover, .button:focus, .button:active {
        background-color: var(--primary-900); /*#84c149;*/
        text-decoration: none;
    }

.buttonSec {
    background-color: var(--gray-light);
    color: black;
    font-weight: 400;
    font-size: 1.1rem; /*16px;*/
    border: none;
    border-radius: 10px;
    text-align: center;
    height: 40px;
    padding-left: 25px;
    padding-right: 25px;
    cursor: pointer;
    margin-bottom: 5px;
    min-width: 100px;
}

    .buttonSec:hover, .buttonSec:focus, .buttonSec:active {
        background-color: var(--gray-medium); /*#84c149;*/
    }


.btnLinkExp {
    border: none;
    outline: none;
    background: none;
    cursor: pointer;
    color: var(--blue-main);
    font-size: 1.0rem; /*16px;*/
}

    .btnLinkExp:hover {
        text-decoration: underline;
    }
/*-----------------------------------------------------------------------------------*/


.mainContainer {
    width: 100%;
    padding: 0 40px;
    overflow: auto;
}


.alignleft {
    text-align: left !important;
}

.aligncenter {
    text-align: center !important;
}

.alignright {
    text-align: right !important;
}

.txtsmall {
    font-size: 0.9rem !important;
}

.inline-block {
    display: inline-block !important;
    margin-right: 5px !important;
}

.stBlock {
    display: block;
}

.alignTop {
    vertical-align: top;
}

.divInnerBox {
    display: inline-block;
    height: 45px;
    width: 250px;
    border: solid 1px silver;
    border-radius: 5px;
    overflow-y: auto;
    padding: 3px;
}

.bgGreen {
    background-color: forestgreen !important;
}

.bgSilver {
    background-color: silver !important;
}

.spanVBar {
    padding: 0 2px;
    font-weight: bold;
}

.spanSearch {
    background-color: var(--gray-lighter);
    font-size: 0.90rem;
    color: black;
    padding: 3px 10px;
    border-radius: 3px;
    margin-bottom: 3px;
    display: inline-block;
    font-style: italic;
    font-weight: bold;
}

/*-----------------------------------------------------------------------------------*/
/* login
/*-----------------------------------------------------------------------------------*/
#login-page {
    height: 100%;
    background-color: #84c149;
    /*background-image: url(../images/login/bg.png);*/
    background-repeat: no-repeat;
    /*background-size: contain;
    background-position: center;*/
    background-size: cover;
    background-position: center;
}

#frmLogin, #frmForgotPwd {
    /*position: absolute;*/
    /*left: 50%;*/
    /*top: 50%;*/
    /*margin: 0 auto;*/
    /*margin-top: 100px;*/
    /*transform: translate(-50%, -50%);*/
    /*width: 95%;*/
    /*max-width: 480px;*/
}

#login-logo {
    margin: auto;
    display: block;
}

#divLoginForm {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    margin: 50px auto;
    width: 95%;
    max-width: 500px;
    box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.2);
}

#login-page h2 {
    margin: 5px 0;
}


/*-----------------------------------------------------------------------------------*/
/* header & footer
/*-----------------------------------------------------------------------------------*/

.no-underline {
    text-decoration: none;
}

header {
    box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.2);
    width: 100%;
}

    header .container {
        display: flex;
        align-items: center;
        height: 80px;
        background: #fff;
    }

.top-logo {
    max-width: 200px;
    max-height: 35px;
}

#icon-menu {
    cursor: pointer;
    width: 30px;
    height: 30px;
}

#header-right {
    margin-left: auto;
    display: flex;
    align-items: center;
}

#icon-profile {
    position: relative;
}

    #icon-profile img {
        border-radius: 20px;
        border: solid 1px silver;
    }

    #icon-profile span {
        position: absolute;
        right: 0;
        bottom: 0;
        color: #fff;
        background: #FF4848;
        border-radius: 50%;
        width: 16px;
        height: 16px;
        text-align: center;
        font-weight: bold;
        font-size: 0.75rem;
        line-height: 15px;
    }

.icon-imgprofile {
    border-radius: 20px;
    border: solid 1px silver;
    margin-left: 15px;
    height: 40px;
    width: 40px;
    position: relative;
}

.icon-lg {
    height: 32px;
    width: 32px;
}

.icon-md {
    height: 24px;
    width: 24px;
}

.icon-sm {
    height: 16px;
    width: 16px;
}


.notice {
    background: #308746;
    color: #fff;
    width: 100%;
    text-align: center;
    padding: 10px;
}

footer {
    background: #fff;
    padding: 0;
}

    footer .container {
        display: flex;
        align-items: center;
        height: 65px;
        background: #fff;
        padding: 0;
    }

        footer .container p {
            /*text-align: center;*/
            width: 100%;
            font-size: 0.85rem;
        }


/*-----------------------------------------------------------------------------------*/
/* menu
/*-----------------------------------------------------------------------------------*/


.nav-link {
    display: flex;
    gap: 1rem;
    border: solid 2px transparent !important;
    align-items: center;
    padding: 0.75rem 1rem !important;
    margin-block: 0.5rem;
    border-radius: var(--border-radius-md);
}

    .nav-link:hover {
        border: solid 2px var(--primary-300) !important;
        background: var(--primary-50) !important;
    }


#menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 9000;
    position: fixed;
    background: var(--white);
    height: 100vh;
    padding: 1.5rem 4rem 1.5rem 3rem;
    box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.2);
    transition: .3s;
}

    #menu.close {
        display: none;
    }

    #menu strong {
        color: var(--primary-700)
    }


.menu-top {
    display: flex;
    gap: 1rem;
    align-items: center;
    /*margin-block: 1rem;*/
}

#icon-close {
    width: 30px;
    height: 30px;
    cursor: pointer;
}

#menu-logo {
    margin-left: 34px;
    margin-top: 3px;
    max-width: 225px;
    max-height: 35px;
}

#menu ul {
    margin: 0;
    padding: 0;
    width: 100%;
}

    #menu ul li {
        list-style: none;
        margin: 0;
    }

        #menu ul li a {
            color: var(--primary-700);
            font-size: 1.5rem;
            list-style: none;
            display: flex;
            align-items: center;
            font-weight: 600;
            text-decoration: none;
        }

            #menu ul li a .icon-holder {
                margin-right: 12px;
                text-align: center;
                width: 24px;
                height: 24px;
            }

                #menu ul li a .icon-holder img {
                    max-height: 100%;
                    max-width: 100%;
                    margin: auto;
                }

        #menu ul li ul.submenu {
            margin-left: 36px;
        }

            #menu ul li ul.submenu li {
                list-style: none;
                margin: 0;
                padding: 0;
            }

                #menu ul li ul.submenu li a {
                    font-weight: 400;
                }


/*-----------------------------------------------------------------------------------*/
/* content
/*-----------------------------------------------------------------------------------*/


.breadcrumb a {
    text-decoration: none;
    color: var(--neutral-400);
}

.bgMain {
    background: var(--main-shade);
}

#main {
    padding: 15px 0;
    background: var(--main-shade);
    color: var(--primary-700);
}

    #main ul {
        margin: 10px 20px;
        padding: 0;
    }

        #main ul li {
            margin: 0;
            padding: 0;
        }

#secondary {
    padding: 1rem 0;
    background: #fff;
}

.hrSub {
    margin: 10px 0 !important;
}

/*-----------------------------------------------------------------------------------*/

.tblCalendar {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

    .tblCalendar td {
        vertical-align: top;
        border: var(--border-primary);
        width: 14.28%;
        padding: 0;
        min-width: 100px;
        padding-bottom: 50px;
    }

.tblCalTdNA {
    background-color: var(--neutral-200);
    color: var(--neutral-400);
    font-style: italic;
}

.trCalHeader {
    font-weight: bold;
    background-color: var(--neutral-300);
    text-transform: uppercase;
    font-size: 1.2rem;
    text-align: center;
    padding: 10px 5px;
}

.trCalMonthHeader {
    font-weight: bold;
    background-color: var(--neutral-300);
    text-transform: uppercase;
    font-size: 1.0rem;
    text-align: center;
    padding: 10px 5px;
}

.trHeader {
    font-weight: bold;
    font-size: 0.85rem;
    background-color: var(--neutral-300);
    text-transform: uppercase;
}

.trHeaderDark {
    font-weight: bold;
    font-size: 0.90rem;
    background-color: var(--gray-dark);
    color: white;
    text-align: center;
    height: 35px;
}

.trCalDayHead {
    font-weight: bold;
    background-color: rgb(140,140,140);
    text-align: center;
    padding: 10px 0;
    font-size: 1.25rem;
}

.divCalDayHead {
    font-weight: bold;
    background-color: var(--neutral-200);
    text-align: center;
    padding: 10px 0;
}

.tablePaging {
    width: 100%;
    padding: 10px 0;
    text-align: right;
    font-weight: bold;
    font-size: 0.9rem;
    color: rgb(75,75,75) !important;
}

    .tablePaging span {
        padding: 0 5px;
    }

.tableContainer {
    width: 100%;
    padding-bottom: 10px;
    overflow-x: auto;
}

    .tableContainer table {
        min-width: 800px;
    }

.tblForm {
    border-collapse: collapse;
    width: 100%;
}

    .tblForm td {
        padding: 5px 0;
        text-align: left;
    }

        .tblForm td:first-child {
            width: 200px;
        }

    .tblForm tr {
        height: 40px;
    }

.tblClear {
    border-collapse: collapse;
    width: 100%;
}

    .tblClear td {
        padding: 5px;
        border: solid 1px var(--gray-medium);
        text-align: left;
    }

    .tblClear tr {
        height: 40px;
    }

.tblClearMin {
    border-collapse: collapse;
}

    .tblClearMin td {
        padding: 3px;
        text-align: left;
    }


.tblSchedule {
    border-collapse: collapse;
    width: 100%;
}

    .tblSchedule td {
        padding: 0.75rem;
    }


.tblTDBorder {
    border-bottom: solid 1px var(--gray-dark);
}

.bottomDashed {
    border-bottom: dashed 1px var(--gray-medium);
}

.tblNone {
    border-collapse: collapse !important;
    width: 100% !important;
}

    .tblNone td {
        padding: 0 !important;
    }


tbody, thead {
    width: 100%;
    display: table;
}

.noWidth {
    width: unset !important;
}


/*-----------------------------------------------------------------------------------*/
/* home
/*-----------------------------------------------------------------------------------*/
.ul-selection {
    list-style-position: outside;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

    .ul-selection li {
        margin: 10px 0;
    }


.ul-alert {
    margin: 0;
    list-style-position: outside;
}

    .ul-alert li {
        list-style: none;
        padding: 3px 0;
    }

        .ul-alert li::before {
            content: '';
            display: inline-block;
            margin-right: 5px;
            margin-left: -20px;
            height: 10px;
            width: 10px;
            background-image: url('../Images/Main/icon-left-arrow.svg');
        }

.home h1 {
    margin-bottom: 25px;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    margin-bottom: 1rem;
}

.grid-info {
    color: var(--black);
    position: relative;
    border-radius: 0.5rem;
    padding: 0.8rem;
    /*display: grid;*/
    align-items: center;
}

    .grid-info:hover {
        background-color: var(--primary-50) !important;
        border-color: var(--primary-700) !important;
    }

.boxes {
    /*display: flex;*/
    /*gap: 10px;*/
    /*width: calc(100% + 20px);*/
    /*margin: 0 -10px 50px -10px;*/
    /*flex-wrap: wrap;*/
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 10px;
    width: 100%;
    overflow: auto;
    padding: 0px;
}

    .boxes .box {
        position: relative;
        /*box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.2);*/
        display: flex;
        flex-wrap: wrap;
        margin: 10px;
        width: calc(33.33% - 27px);
        padding: 0;
        border-radius: 24px;
        border: solid 1px #c1c1c1;
        background: #fff;
    }

.box a.box-icon {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 80px auto;
}

.box:hover a.box-icon img {
    opacity: 0.8;
}

.box a.box-link {
    font-size: 1.05rem;
    font-weight: bold;
    text-decoration: none;
    position: absolute;
    bottom: 0;
    /*left: 0;*/
    padding: 30px 50px 30px 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background: url(../images/main/icon-left-arrow.svg) no-repeat calc(100% - 25px) center / 10px 10px;
    width: 100%;
}

.box:hover a.box-link {
    color: #308746;
}


/*-----------------------------------------------------------------------------------*/
/* forms
/*-----------------------------------------------------------------------------------*/

.form-sm {
    width: 100%;
    /*max-width: 640px;*/
    margin: 20px 0;
}

.form-description {
    /*font-size: 15px;*/
    /*font-weight: 600;*/
    /*color: var(--gray-dark);*/
    /*padding-bottom: 10px;*/
}

.txt-success {
    color: #155724 !important;
}

.st_txtRed {
    color: var(--red-dark) !important;
}

.txt-danger {
    color: #721c24 !important;
    font-weight: bold !important;
}

.txt-large {
    font-size: 1.1rem !important;
}

.txt-larger {
    font-size: 1.2rem !important;
}

.txt-small {
    font-size: 0.90rem !important;
}

.txt-Upper {
    text-transform: uppercase;
}

.txt-Lower {
    text-transform: lowercase;
}

.txt-notes {
    font-size: 0.85rem !important;
    color: rgb(125,125,125) !important;
    font-weight: bold;
    font-style: italic;
}

/* ================================================== */
/* schedule page items */

.no-wrap {
    white-space: nowrap !important;
    text-overflow: ellipsis !important;
    overflow: hidden !important;
    max-width: 200px;
}

.itemCalMain {
    font-size: 0.85rem !important;
    border: solid 1px silver;
}

    .itemCalMain:hover {
        text-decoration: underline !important;
		border-color: black !important;
    }

.itemCalSub {
    font-size: 0.80rem !important;
    font-style: italic;
}

.itemSchedMain {
    font-size: 1rem !important;
}

.itemSched {
    border: solid 1px transparent;
    border-radius: 0.5rem;
    padding: 1rem 0.5rem;
    font-size: 0.85rem !important;
}

    .itemSched a, .itemSchedMain a {
        text-decoration: none;
    }

.sched-success {
    background-color: var(--success-100);
    color: var(--success-700) !important;
}

    .sched-success a {
        color: var(--success-700) !important;
    }

.sched-pending {
    background-color: var(--warning-100);
    color: var(--warning-900);
}

    .sched-pending a {
        color: var(--warning-900);
    }

.sched-cancel {
    background-color: var(--danger-100);
    color: var(--danger-700);
}

    .sched-cancel a {
        color: var(--danger-700);
    }

    .sched-success:hover, .sched-pending:hover, .sched-cancel:hover {
        border: solid 1px var(--neutral-500);
    }



/* end of schedule page items */
/* ================================================== */
.alert {
    /*border-radius: 12px;*/
    margin: 6px 0;
    padding: 10px;
    border-width: 2px;
    border-style: solid;
    width: 100%;
    display: block;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #721c24; /*#f5c6cb;*/
    font-weight: bold;
    text-transform: uppercase;
}

.alert-info {
    color: var(--blue-dark);
    background-color: #d1ecf1;
    border-color: #bee5eb;
}

.alert-success {
    color: var(--primary-700);
    background-color: var(--tr-hover);
    border-color: var(--primary-700);
    font-weight: bold;
    text-transform: uppercase;
}

.alert-warning {
    color: #423202; /*#856404;*/
    background-color: #fff3cd;
    border-color: #ffd03b;
}

.alert-redvbar {
    border-left: solid 3px red;
}

.trSuccess {
    background-color: var(--success-100);
    color: var(--success-900);
}

.trPending {
    background-color: var(--warning-100);
    color: var(--warning-900);
}

.trOverdue {
    background-color: var(--danger-100);
    color: var(--danger-900);
}

.trCancel {
    color: white;
    background-color: var(--red-dark);
}

    .trCancel a, .trOverdue a {
        color: var(--black)
    }

.field {
    display: block;
    padding: 5px 0;
    padding-bottom: 10px;
}

.field-text {
    display: block;
    margin: 10px auto 10px auto;
    font-weight: bold;
    color: var(--gray-dark);
}

label, .divLabel {
    display: block;
    color: var(--black);
    font-size: 1.0rem;
    font-weight: 600;
}

.txtFR {
    color: var(--fr-text) !important;
    font-style: italic !important;
}

.txtbox {
    border: none;
    outline: solid 2px #E1E0E0;
    background: #fff;
    height: 35px;
    margin: 5px 0;
    padding: 0 10px;
    border-radius: 5px;
    min-width: 100px;
}

.txtarea {
    width: 100%;
    border: solid 2px #E1E0E0;
    background: #fff;
    margin: 5px 0;
    font-size: 1.0rem;
    padding: 10px;
    border-radius: 5px;
}

.w1pxfix {
    width: 1px !important;
}

.w50pxfix {
    width: 50px !important;
}

.w75pxfix {
    width: 75px !important;
}

.w100pxfix {
    width: 100px !important;
}

.w150pxfix {
    width: 150px !important;
}

.w200pxfix {
    width: 200px !important;
}

.w250pxfix {
    width: 250px !important;
}

.w100px {
    width: 100%;
    /*max-width: 100px !important;*/
}

.w50px {
    width: 100%;
    max-width: 50px !important;
}

.w250px {
    width: 100%;
    max-width: 250px !important;
}

.w400px {
    width: 100%;
    max-width: 400px !important;
}

.w600px {
    width: 100%;
    max-width: 600px !important;
}

.w100perc {
    width: 100%;
    display: block;
}

.selectbox-holder {
    margin: 6px 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.selectbox {
    height: 35px;
    padding: 0 40px 0 10px;
    border-radius: 5px;
    border: none;
    outline: solid 2px #E1E0E0;
    min-width: 100px;
    /*background: #fff url("../images/main/icon-down.svg") no-repeat calc(100% - 10px) center / 16px auto;*/
    /*appearance: none;*/
    /*-webkit-appearance: none;*/
}

.selectbox-holder-wide {
    width: 100%;
    margin: 6px 0;
    padding: 0;
    display: flex;
    align-items: center;
}

    .selectbox-holder-wide .selectbox {
        width: 100%;
    }

.selectbox-min {
    padding: 5px;
    border-radius: 5px;
    border: solid 1px #E1E0E0;
    background: #fff url("../images/main/icon-down.svg") no-repeat calc(100% - 10px) center / 16px auto;
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
}

/*.radio-holder {
    margin: 0 0 20px 0;
}

    .radio-holder label {
        display: flex;
        align-content: center;
        margin: 0;
        padding: 0;
        line-height: 1.5;
    }

    .radio-holder input[type="radio"] {
        appearance: none;
        background-color: #fff;
        margin: 0 15px 0 0;
        font: inherit;
        color: #000;
        width: 24px;
        height: 24px;
        border: 2px solid var(--gray-dark);
        border-radius: 50%;
    }

        .radio-holder input[type="radio"]:focus {
            background-color: #84c149;
            border: 2px solid #84c149;
        }

        .radio-holder input[type="radio"]:hover {
            outline: max(2px, 2px) solid #84c149;
            outline-offset: max(2px, 2px);
        }*/

#forgot-password {
    display: block;
    margin: 0 auto 40px auto;
    width: 100%;
    text-align: right;
}

.upload-field h4, .link-field h4 {
    text-align: center;
    color: var(--gray-dark);
    padding: 0 0 15px 0;
    margin: auto;
}
