@import url("./color-scheme.fed056bdb697.css");

html,
body {
    margin: 0;
    padding: 0;
}

#main-content-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: auto;
    color: var(--rf-ink);
}

#main-content-container>.row {
    height: auto;
}

@media screen and (min-width: 768px) {
    #main-content-container {
        min-height: 90vh;
    }

    #main-content-container>.row {
        min-height: 100%;
        flex-grow: 1;
    }

    .register-col {
        min-height: 100%;
        padding-top: unset;
        padding-bottom: unset;
        align-self: stretch;
    }

    .explainer-col {
        min-height: 100%;
        padding-top: unset;
        padding-bottom: unset;
        align-self: stretch;
    }
}

/*========================================
LEFT: explainer panel
==========================================*/
.explainer-col {
    background: linear-gradient(150deg, var(--rf-forest), var(--rf-deep));
    color: #fff;
    height: auto;
    padding-top: 10%;
    padding-bottom: 10%;
}

#explainer-title {
    font-size: 1.9rem;
    font-weight: 800;
    letter-spacing: -.01em;
    line-height: 1.3;
    padding-bottom: 1.75rem;
    text-align: center;
    color: #fff;
}

#explainer-title b {
    color: var(--rf-soft);
    font-weight: 800;
}

.explainer-item {
    max-width: 800px;
    width: -webkit-fill-available;
    padding-left: 10%;
}

.explainer-sub-heading {
    display: flex;
    justify-content: start;
    align-items: flex-start;
    width: 100%;
    padding-left: 10%;
    padding-right: 10%;
    padding-bottom: 1.5em;
    gap: 16px;
}

.explainer-icon {
    flex: none;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255,255,255,.14);
    display: flex;
    align-items: center;
    justify-content: center;
}

.explainer-icon i {
    color: var(--rf-soft);
    font-size: 20px;
}

.explainer-sub-heading p {
    width: 80%;
    margin-bottom: 0;
    font-size: 1.05em;
    font-weight: 600;
    line-height: 1.5;
    text-align: left;
    color: #dcefe0;
}

/*========================================
RIGHT: form panel
==========================================*/
.register-col {
    position: relative;
    background-color: var(--rf-surface);
    background-image: url("../images/overview-background-blur.77f5afc8e8a5.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: auto;
    padding-top: 10%;
    padding-bottom: 10%;
    overflow: hidden;
}

.register-col::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(150deg, rgba(21,64,42,.72) 0%, rgba(28,84,54,.5) 55%, rgba(33,96,64,.28) 100%);
}

.alerts {
    font-size: 12px;
    color: #d9534f;
}

.form-container {
    position: relative;
    z-index: 1;
    max-width: 420px;
    width: 100%;
    border: 1px solid var(--rf-border);
    padding: 2.25em 2em;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    box-shadow: 0 20px 50px -30px rgba(20,40,30,.35);
}

.form-logo {
    display: block;
    max-height: 44px;
    width: auto;
    margin-bottom: 22px;
}

.form-container form {
    width: 100%;
}

.form-container h2 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--rf-forest);
    text-align: center;
    margin-bottom: 1rem;
}

.multi-collapse {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.center-text a,
.center-text a:visited {
    color: var(--rf-body);
    text-decoration: underline;
}

.center-text a:hover {
    color: var(--rf-primary);
}

/* Inputs (crispy bootstrap5-rendered fields + the two manually-rendered ones) */
.form-container label,
.form-container .form-label {
    display: block;
    font-weight: 600;
    font-size: 12.5px;
    color: var(--rf-muted);
    margin-bottom: 6px;
    margin-top: 10px;
    text-align: left;
    width: 100%;
}

.form-container input[type="text"],
.form-container input[type="email"],
.form-container input[type="password"],
.form-container .form-control {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid var(--rf-border2);
    font-size: 14px;
    font-family: var(--rf-font);
    color: var(--rf-ink);
}

.form-container input:focus,
.form-container .form-control:focus {
    outline: none;
    border-color: var(--rf-primary);
    box-shadow: 0 0 0 3px rgba(47,158,91,.15);
}

.form-container .invalid-feedback {
    color: #d9534f;
    font-size: 12.5px;
}

/* Buttons */
.login-button {
    background-color: var(--rf-primary) !important;
    border: none !important;
    border-radius: 10px !important;
    color: #fff !important;
    font-weight: 700;
    padding: 12px 26px !important;
    transition: background .2s ease;
}

.login-button:hover:not(:disabled) {
    background-color: var(--rf-primary-hover) !important;
}

.login-button:disabled {
    background-color: var(--rf-border2) !important;
    color: var(--rf-muted) !important;
    opacity: 1;
}

/*========================================
PASSWORD TOOLTIP
==========================================*/
#div_id_password1 {
    position: relative;
    width: 100%;
}

.password-input-container {
    position: relative;
}

#togglePassword {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--rf-muted);
    cursor: pointer;
}

#togglePassword:hover {
    color: var(--rf-primary);
}

#pwd-info {
    position: absolute;
    top: 70px;
    left: 0;
    width: 280px;
    padding: 16px;
    background: #fff;
    font-size: .875em;
    border-radius: 12px;
    box-shadow: 0 12px 30px -12px rgba(20,40,30,.35);
    border: 1px solid var(--rf-border);
    z-index: 100;
}

#pwd-info::before {
    content: "";
    position: absolute;
    top: -7px;
    left: 45%;
    width: 12px;
    height: 12px;
    background: #fff;
    border-left: 1px solid var(--rf-border);
    border-top: 1px solid var(--rf-border);
    transform: rotate(45deg);
}

#pwd-info h5 {
    margin: 0 0 10px 0;
    padding: 0;
    font-size: 13px;
    font-weight: 700;
    color: var(--rf-forest);
}

#pwd-info ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

#pwd-info li {
    list-style-type: none;
    font-weight: 500;
    font-size: .875em;
    font-style: normal;
}

.list-tick {
    list-style: none;
    color: var(--rf-primary);
    padding-left: 22px;
    line-height: 24px;
}

.list-tick::before {
    content: '\2713';
    font-size: large;
    color: var(--rf-primary);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.list-X {
    list-style: none;
    color: var(--rf-muted);
    padding-left: 22px;
    line-height: 24px;
    font-size: 0.9rem;
}

.list-X::before {
    content: "\00d7";
    font-size: large;
    color: #d9534f;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

#pwd-common {
    color: var(--rf-muted);
}
