body,
html {
    height: 100%;
    margin: 0;
    font-family: "Segoe UI", sans-serif;
    color: #132C3B;
    font-size: 1.0rem;
}

.custom-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.4rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-container {
    width: 100%;
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
}

.btn-green,
.btn-success,
.bootbox-accept {
    background-color: #00AF2A !important;
    border: none;
    color: white !important;
    font-weight: bold;
}

.btn-green {
    min-width: 14.5rem;
}

.btn-green:hover,
.btn-success:hover,
.bootbox-accept:hover {
    background-color: #00CC11 !important;
    color: white !important;
}

.btn-green:active,
.btn-success:active,
.bootbox-accept:active {
    background-color: #008A21 !important;
    color: white !important;
}

.auth-container {
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.auth-left {
    height: 100vh;
    overflow: auto;
    flex: 1;
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    /* TODO: Use this for dark mode */
    /* color: #FFFFFF; */
    /* background: linear-gradient(to bottom, #000000 0%, #1a1a1a 50%, #3a3a3a 100%); */
}

.brand-logo {
    max-width: 9.625rem;
    align-self: flex-start;
}

.auth-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.auth-right {
    display: none;
}

.right-overlay {
    position: absolute;
    height: 100%;
    padding: 2.5rem;
    display: flex;
    align-items: end;
}

.link-green {
    color: #00AF2A !important;
	text-decoration: underline !important;
}

.link-green:hover {
    color: #00CC11 !important;
}

.custom-border-left {
    border-left: 0.25rem solid #00AF2A;
    padding-left: 0.9375rem;
    margin-top: 1.25rem;
    max-width: 36.875rem;
}

.form-header-container {
    width: 100%;
    max-width: 25rem;
    margin: 0 auto;
}

.form-header-container h4 {
    font-weight: bold;
    margin-bottom: 0.4rem;
    font-size: 1.5rem;
}

.form-header-container p {
    margin-bottom: 1.5rem;
    font-size: 0.88rem;
}

.full-width {
    width: 100%;
}

.full-height {
    height: 100%;
}

.object-cover {
    object-fit: cover;
}

.text-bold {
    font-weight: bold;
}

.bg-image {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.right-text h1 {
    max-width: 43.31rem;
    font-weight: bold;
}

.form-control::placeholder {
    color: #BFBEBD !important;
    opacity: 1 !important;
}

.errorlist {
    padding: 0;
    margin: 0;
}

.errorlist li {
    list-style: none;
    bottom: 0.625rem;
    padding-left: 0.3125rem;
    position: relative;
}

@media (min-width: 48rem) {
    .auth-container {
        flex-direction: row;
    }

    .auth-left {
        padding: 1rem 2.5rem;
        flex: 0.6;
    }

    .auth-right {
        flex: 1;
        position: relative;
        color: white;
        height: 100%;
        display: flex !important;
    }
}
