p {
    text-align: center;
}

h2 {
    text-align: center;
}

input {
    margin-bottom: .5em;
}

.main-container {
    width: 100%;
}

.background-text {
    opacity: 0.5;
}

.signup-outer {
    display: flex;
    justify-content: space-evenly;
}

.thoxt-signup-bg {
    display: block;
    margin: auto;
    z-index: -1;
}

.thoxt-signup-bg img {
    width: 42vw;
    opacity: 0.7;
}

.inner-container {
    display: block;
    width: 45vw;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    margin: 20px auto 10px 0;
    padding: 10px 20px;
}

.dob-div,
.dob-selection {
    display: flex;
    flex-direction: row;
    gap: 20px;
    width: 100%;
    align-items: center;
    justify-content: center;
}

/* Mobile Screens */
@media screen and (max-width: 1000px) {
    h2 {
        font-size: 1.6em;
    }

    p {
        font-size: 1em;
    }

    .main-container {
        margin-top: 40px;
        width: 100%;
    }

    .thoxt-signup-bg {
        left: 10px;
    }

    .thoxt-signup-bg img {
        opacity: 0.3;
    }
}

/* Mobile Screens */
@media screen and (max-width: 767px) {

    .signup-outer {
        flex-direction: column;
    } 

    .thoxt-signup-bg {
        position: absolute;
        left: 10px;
        top: 5%;
    }

    .thoxt-signup-bg img {
        width: 60vw;
        left: 10px;
        opacity: 0.3;
    }

    .inner-container {
        position: relative;
        display: flex;
        flex-direction: column;
        width: 100%;
        background-color: rgba(36, 36, 36, 0.5);
        margin: 10px 0;
    }

    .dob-div {
        flex-direction: column;
        gap: 5px;
    }
}

.warning-message {
    display: none;
    color: #bf2938;
    font-size: .8em;
    margin-top: .5em;
    text-align: left;
}

.warning-password {
    display: none;
    opacity: 1;
}

.age-check {
    display: flex;
    position: relative;
}

.age-check input {
    width: 1.5em;
    height: 1.5em;
    margin-right: .2em;
    cursor: pointer;
}

select {
    height: 1.4em;
    border: none;
    line-height: 1.5em;
}

.reset-pwd-container {
    position: relative;
    left: auto;
    right: auto;
}

.inner-container img:not(.google-login-button) {
    margin-bottom: 3em;
}

.captcha-image {
    min-width: 150px;
    margin-bottom: 0 !important;
}

.error-message {
    color: red;
}