body,button,input,keygen,select,textarea {
    font-family: ProximaNova,arial,sans-serif;
    font-weight: 400;
    font-size: 14px
}

a, a:active, a:visited {
    color: var(--login-primary, #2A7AB0);
    text-decoration: underline;
}

.form-element__input:focus {
    border-color: var(--login-primary, #5E9569);
}
.form-element__input-validation-icon {
    color: #5E9569;
}
.form-element__input.mat-input-element:focus {
    border-color: var(--login-primary, #5E9569);
}

.radio-group .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-outer-circle,
.radio-group .cdk-focused .mat-radio-label {
    border-color: #5E9569;
}

.btn {
    color: #767676;
    display: inline-block;
    width: auto;
    font-size: 14px;
    font-weight: 700;
    overflow: visible;
    vertical-align: middle;
    padding: 9px 20px;
    border: 1px solid transparent;
    background-color: #fff;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: .5px;
    line-height: 17px;
    text-align: center;
    box-shadow: 0 0 10px #0000001a;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-appearance: none
}

.btn:hover {
    border: 1px solid #5E9569;
    box-shadow: 0 5px 5px #0000000d;
    color: #5E9569;
    text-decoration: none;
    transition: all .2s ease
}

.btn:active,.btn:focus {
    text-decoration: none;
    outline: none;
    color: #5E9569;
    border: 1px solid #5E9569
}

.btn.btn-primary {
    color: #fff;
    background-color: #5E9569;
    box-shadow: none;
    border: 1px solid #456D4D;
    border-radius:4px;
}

.btn.btn-primary:hover:not(.btn--disabled) {
    color: #fff;
    background-image: linear-gradient(180deg,rgba(0,0,0,.2),rgba(0,0,0,.2));
    box-shadow: none
}

.btn.btn-primary:active,.btn.btn-primary:focus {
    color: #fff
}

.btn--disabled, .btn[disabled], .btn.disabled {
    color: #FFFFFF;
    background-color: #5E9569;
    cursor: not-allowed;
    border: 1px solid #456D4D;
    opacity: 60%;
}

.card {
    padding: 25px;
    margin-bottom: 25px;
    border-style: solid;
    border-width: 1px;
    border-color: #f2f2f2;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 0 0 10px #0000000d;
    position: relative!important;
}

.card__dark {
    background-color: #161619;
    border-color: #161619;
}

.form__label {
    display: block;
    margin-bottom: 5px;
    line-height: 14px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #2F2F31;
    opacity: 0.9;
}

.form__label--dark {
    color: #DBDBDC;
}

.form-element__input {
    display: inline-block;
    height: 40px;
    width: 100%;
    padding: 10px 20px;
    vertical-align: baseline;
    border: 1px solid #CDCDCD;
    box-sizing: border-box;
    border-radius: 4px;
    font-size: 14px;
    line-height: 15px;
    background-clip: padding-box;
    background-color: #fff;
    color: #191919;
}

.form-element__input__dark {
    background-color: #161619;
    color: #DBDBDC;
    border-color: #DBDBDC;
}

.form-element__input__dark:focus {
    border-color: #DBDBDC !important;
}

.form-element__input:hover {
    border-color: #767676
}

.form-element__input:focus {
    outline: 0;
    border-color: var(--login-primary, #5E9569)
}

.form-element__input[readonly=readonly],.form-element__input:disabled {
    opacity: .6;
    cursor: not-allowed;
    background-color: #EDEDEE;
    border: solid 1px #DBDBDC;
    color: #959597;
}

@media (max-width: 480px) {
    .form-element__input {
        font-size:16px
    }
}

.form-element__input-wrapper {
    position: relative
}

.form-element__input-validation-icon {
    display: none;
    color: #5E9569;
    position: absolute;
    top: 14px;
    right: 16px;
    pointer-events: none
}

.form-element__input--valid+.form-element__input-validation-icon {
    display: block
}

.form-element__type-input {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 1px solid #CDCDCD;
    border-radius: 4px
}

.form-element__type-input-icon {
    margin-right: 15px;
    font-size: 20px;
    color: #909090
}

.form-element__type-input-icon--small {
    margin-right: 15px;
    font-size: 14px;
    color: #909090
}

.form-element__type-input-change {
    margin-left: auto
}

.form-element__checkbox {
    position: absolute;
    left: -999em
}

.form-element__checkbox-label {
    color: #909090
}

.form-element__checkbox-label:hover {
    cursor: pointer
}

.form-element__checkbox-label:before {
    display: inline-block;
    content: "\f0c8";
    margin-right: 10px;
    cursor: pointer;
    background-color: #fff;
    color: #cdcdcd;
    font-family: "Font Awesome 6 Pro",arial,sans-serif;
    font-size: 15px
}

.form-element__checkbox-label--line-height-18 {
    line-height: 18px
}

.form-element__checkbox+.form-element__checkbox-label:hover:before {
    color: #767676
}

.form-element__checkbox[disabled]+.form-element__checkbox-label {
    cursor: not-allowed;
    opacity: .6
}

.form-element__checkbox[disabled]+.form-element__checkbox-label:before {
    cursor: not-allowed;
    border-color: #cdcdcd
}

.form-element__checkbox[disabled]+.form-element__checkbox-label:hover:before {
    color: #cdcdcd
}

.form-element__checkbox:checked+.form-element__checkbox-label:before {
    content: "\f14a";
    font-weight: 900;
    color: #5E9569
}

.form-element__checkbox:checked+.form-element__checkbox-label--resident:before {
    color: #000000;
}

.form-element__checkbox:checked+.form-element__checkbox-label--admin:before {
    color: #153D58
}


:root {
    --fa-font-regular: normal 400 1em/1 "Font Awesome 6 Pro"
}

@font-face {
    font-family: "Font Awesome 6 Pro";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(../webfonts/fa-regular-400.woff2) format("woff2"),url(../webfonts/fa-regular-400.ttf) format("truetype")
}

:root {
    --fa-font-solid: normal 900 1em/1 "Font Awesome 6 Pro"
}

@font-face {
    font-family: "Font Awesome 6 Pro";
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url(../webfonts/fa-solid-900.woff2) format("woff2"),url(../webfonts/fa-solid-900.ttf) format("truetype")
}

.form-error-alert {
    display: block
}

.alert {
    display: block;
    padding: 15px 20px;
    font-size: 12px;
    font-weight: 500;
    line-height: 14px;
    border-radius: 4px;
    background-color: #fff;
    /* Always white-backed, so text color must not depend on the ambient page theme (e.g. .login-bg--manager sets color:#fff). */
    color: #191919;
    box-shadow: 0 0 10px #0000001a;
    border-style: solid;
    border-width: 1px;
    border-color: #f2f2f2;
    border-left: 5px solid #5E9569
}

.alert--with-icon {
    position: relative
}

.alert--error {
    border-left: 5px solid #FF3824
}

.alert--warning {
    border-left-color: #ffc107
}

.alert--info {
    border-left: 5px solid #2A7AB0
}

.alert__icon {
    position: absolute;
    top: calc(50% - 10px);
    left: 15px
}

/* Manager's legacy sign-in uses the newer bd-alert/alert--refresh look (pink background, filled-circle
   icon, bold lead-in) instead of the alert--with-icon style above, which matches Resident's legacy.
   Values taken from @buildium/theme's alerts.less .alert--error rule for pixel parity. */
.alert--refresh {
    background-color: #f9e2df;
    border: 1px solid #e58c80;
    font-size: 14px;
    position: relative;
}

.alert--refresh .alert__icon--fa {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 18px;
    color: #D4402B;
}

.alert--refresh .alert__label {
    display: inline-block;
    margin-left: 35px;
    color: #191919;
    line-height: 17px;
}

.alert--refresh .alert__bolded {
    font-weight: 700;
}

.alert__text-with-icon {
    display: flex;
    flex-wrap: wrap;
    padding-left: 30px
}

.fa,.fa-brands,.fa-classic,.fa-duotone,.fa-light,.fa-regular,.fa-sharp,.fa-sharp-solid,.fa-solid,.fa-thin,.fab,.fad,.fal,.far,.fas,.fasl,.fasr,.fass,.fat {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-feature-settings: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto
}

.fa-classic,.fa-light,.fa-regular,.fa-solid,.fa-thin,.fal,.far,.fas,.fat {
    font-family: "Font Awesome 6 Pro", serif
}

.fa-icon {
    font-size: 18px
}

.fa-icon--success {
    color: #50975e
}

.fa-icon--error {
    color: #ff3824
}

.fa-icon--warning {
    color: #ffc107
}

.fa-icon--info {
    color: #2a7ab0;
    font-size: 20px;
}

.fa-icon--vertical-center {
    vertical-align: middle
}

.fa-solid,.fas {
    font-weight: 900
}

.fa-exclamation-triangle:before,.fa-triangle-exclamation:before,.fa-warning:before {
    content: "\f071"
}

.fa-info:before {
    content: "\f129";
}

.fa-info-circle:before {
    content: "\f05a";
}

.fa-exclamation-circle:before,.fa-circle-exclamation:before {
    content: "\f06a";
}

.fa-solid,.fas {
    font-weight: 900
}
