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

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

body {
    background-color: var(--home-med-green);
}


/**
 * Stick the footer to the bottom of the page
 */
/* footer {
    position: fixed !important;
    bottom: 0;
    width: 100%;
} */

#main-content-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: auto;
}

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

.register-col {
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: url("../images/overview-background-blur.77f5afc8e8a5.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: auto;
    padding-top: 10%;
    padding-bottom: 10%;
}

.alerts {
  font-size: 10px;
  color: red;
}

.explainer-col {
    background-color: var(--home-med-green);
    color: white;
    height: auto;
    padding-top: 10%;
    padding-bottom: 30%;
}

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

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

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

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


}

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

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

.form-container h2 {
    font-size: 1.5rem;
    font-weight: bold;
}

.no-account-block {
    background-color: rgb(245, 245, 245);
}

#explainer-title {
    font-size: 1.875rem;
    padding-bottom: 1.5rem;
    text-align: center;
}



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

.explainer-sub-heading svg {
    width: 40px;
    height: 40px;
}

.explainer-sub-heading p {
    width: 80%;
    padding-left: 20px;
    margin-bottom: 0;
    font-size: 1.2em;
    font-weight: 600;
    text-align: left;
}

.register-col .form-container {
    max-width: 400px;
    width: 100%;
    border: 3px solid black;
    padding: 1.5em;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: white;

}

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

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



/* PASSWORD TOOLTIP STYLES */

#div_id_password1 {
    position: relative;
}

#pwd-info {
    position: absolute;
    top: 70px;
    top: 75px\9;
    /* IE Specific */
    left: 0;
    width: 300px;
    padding: 15px;
    background: #fefefe;
    font-size: .875em;
    border-radius: 5px;
    box-shadow: 0 1px 3px #ccc;
    border: 1px solid #ddd;
    z-index: 100;
}

#pwd-info::before {
    content: "\25B2";
    position: absolute;
    top: -12px;
    left: 45%;
    font-size: 14px;
    line-height: 14px;
    color: #ddd;
    text-shadow: none;
    display: block;
}

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

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

}

.list-tick {
    list-style: none;
    /* Remove default bullets */
    color: #3a7d34;
    padding-left: 22px;
    line-height: 24px;
}

.list-tick::before {
    content: '\2713';
    font-size: large;
    color: var(--base-green);
    font-weight: bold;
    display: inline-block;
    /* Needed to add space between the bullet and the text */
    width: 1em;
    /* Also needed for space (tweak if needed) */
    margin-left: -1em;
    /* Also needed for space (tweak if needed) */
}

.list-X {
    list-style: none;
    /* Remove default bullets */
    color: #ec3f41;
    padding-left: 22px;
    line-height: 24px;
    font-size: 0.9rem;
}

.list-X::before {
    content: "\00d7";
    font-size: large;
    color: red;
    font-weight: bold;
    display: inline-block;
    /* Needed to add space between the bullet and the text */
    width: 1em;
    /* Also needed for space (tweak if needed) */
    margin-left: -1em;
    /* Also needed for space (tweak if needed) */
}

/* show/hide password */
#togglePassword {
    float: right;
    margin-left: -25px;
    margin-top: -25px;
    padding-right: 5px;
    position: relative;
    z-index: 2;
    cursor: pointer; /* Add cursor pointer to indicate it's clickable */

}
