/* Signup div styling */
/* ------------------------------------------------------------------------------------------------------------------------------- */
.signup-banner {
    width: 100vw;
    background-image: url(/images/shared/curved-banner-4.svg);
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
    object-fit: scale-down;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    margin-top: 5vh;
    margin-bottom: 10vh;
}

.signup-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 40vw;
    padding: 10vh 0;
}

.signup-text {
    font-family: sans-serif;
    font-size: 4rem;
    color: hsl(207.04, 31%, 44.9%);
}

.signup-form-alert {
    margin-top: 1vh;
    font-size: 1.25rem;
    color: red;
}

.signup-input {
    margin-top: 2vh;
    border-radius: 20px;
    border-width: 2px;
    border-style: solid;
    border-color: hsl(207.04, 31%, 44.9%);
    padding-left: 10px;
    font-size: 1.25rem;
}

.signup-button {
    margin-top: 1vh;
    border-radius: 50px;
    background-color: hsl(207.04, 31%, 44.9%);
    color: white;
    font-size: 1.5em;
    border: none;
    width: 40%;
    margin-left: auto;
    margin-right: auto;
}

.signup-terms {
    color: hsl(207.04, 31%, 44.9%);
    font-size: 1rem;
    font-family: sans-serif;
    margin-top: 1vh;
}

/* ------------------------------------------------------------------------------------------------------------------------------- */