body {
    height: 100vh;
    display: flex;
    align-items: center;
    background: #0F0F0F;
    color: #B7B7B7;
}

.welcome-page li {
    list-style: none;
    padding: 4px;
}

.logged-out-page iframe {
    display: none;
    width: 0;
    height: 0;
}

.grants-page .card {
    margin-top: 20px;
    border-bottom: 1px solid lightgray;
}

.grants-page .card .card-title {
    font-size: 120%;
    font-weight: bold;
}

.grants-page .card .card-title img {
    width: 100px;
    height: 100px;
}

.grants-page .card label {
    font-weight: bold;
}


.login-container {
    padding: 34px 40px;
    min-height: 547px;
    position: relative;
}

.error-page {
    padding: 34px 40px;
}

.register-succeeded {
    padding: 80px 15px;
}

.register-succeeded h2 {
    font-weight: 700;
    margin: 24px 0;
}

.register-succeeded p {
    margin-bottom: 0;
}

.create-password {
    text-align: center;
}


.login-header {
    text-align: center;
}

.login-title {
    text-align: center;
    color: #F6F6F7;
}

.login-title h1 {
    font-size: 40px;
    line-height: 1;
    font-weight: 700;
}

.login-subtitle {
    font-size: 16px;
    text-align: center;
    font-weight: 500;
}

input.form-control:focus {
    box-shadow: none;
}

.email-info {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 20px;
    padding: 5px 10px;
    font-size: 14px;
}

.forgot-password {
    color: #B18E4E;
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
}

.forgot-password:hover {
    color: #B18E4E;
    text-decoration: none;
}

.user-image {
    height: 64px;
    width: 64px;
    border-radius: 50%;
    border: 1px solid #000;
    overflow: hidden;
}

.user-image img {
    object-fit: contain;
    height: 100%;
    width: 100%;
}

.btn-primary.disabled, .btn-primary:disabled {
    color: #fff;
    background-color: #007bff !important;
    border-color: #007bff !important;
}

.fs-14 {
    font-size: 14px !important;
}

.no-min-height {
    min-height: auto !important;
}

.mt-n-10 {
    margin-top: -10px;
}


@media (min-width: 768px) {
    .col-login {
        -ms-flex: 0 0 450px;
        flex: 0 0 450px;
        max-width: 450px;
    }
}

.form-group label {
    font-weight: 500;
    font-size: 14px;
}

#password-validation ul {
    padding-left: 0;
}

#password-validation li {
    list-style: none;
    padding-left: 0;
}

.initials {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    font-size: 24px;
    line-height: 59px;
    background-color: #cddaea;
    color: #183350;
    font-weight: 500;
}

ul.text-danger li{
    display: none
}


.sublimefx-container:not(.register-success-container) {
    position: relative;
    background-image: url('../site-bg.png');
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 24px;
}

.register-success-container {
    position: relative;
    border-radius: 10px;
    background: #1F1F1F
}

.register-success-container::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 10px;
    padding: 1.5px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    background: linear-gradient(180deg, #02C768 -58.06%, #000000 100%);
}

.btn-primary {
    display: block;
    width: 100%;
    text-align: center;
    background: #B18E4E;
    border-color: #B18E4E;
    box-shadow: none !important;
    padding: 15px 32px;
    line-height: 1;
    border-radius: 8px;
}

.btn-primary:is(:hover, :active, :focus) {
    background: #B18E4E !important;
    border-color: #B18E4E !important;
    box-shadow: none !important;
}

input.form-control {
    background: #2E2E2E;
    border-color: #2E2E2E;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    border-radius: 8px;
    padding: 16px;
    line-height: 1;
}

input.form-control:focus {
    background: transparent;
    border-color: #fff;
    color: #fff;
}

.contact-us {
    text-align: center;
    font-size: 16px
}

.contact-us a{
    text-decoration: underline;
    color: #fff;
}