#signup-page {
    background-color: var(--secondary);
    overflow: hidden;
    flex-direction: row;
    justify-content: flex-end;
    height: 100% !important;
}

#signup-page .blank-space {
    background-image: url("../../images/bg/signup-bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    width: 50%;
}

#signup-page .blank-space .logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

#signup-page .blank-space .logo img {
    height: 12rem !important;
    width: auto !important;
}

#signup-page .sided-form {
    background-color: var(--body-bg);
    height: 100vh;
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#signup-page .sided-form .sided-content {
    width: 75%; 
}

#signup-page .form-group {
    margin-bottom: 0.5rem;
}

#signup-page .logo {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

#signup-page .logo img {
    height: 50px !important;
    width: auto !important;
}

#signup-page .button-position {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

#signup-page h2 {
    margin-bottom: 4rem;
    color: var(--primary);
}

#signup-page .terms-input {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

#signup-page #cancel-button,
#signup-page #signup-button {
    width: 100%;
}

@media only screen and (max-width: 1850px) {
    #signup-page .sided-form {
        width: 60%;
    }

    #signup-page .blank-space {
        width: 40%;
    }
}

@media only screen and (max-width: 1100px) {
    #signup-page .sided-form {
        width: 75%;
    }

    #signup-page .blank-space {
        width: 25%;
    }

    #signup-page .blank-space .logo img {
        height: 8rem !important;
    }
}

@media only screen and (max-width: 730px) {
    #signup-page .sided-form {
        width: 100%;
    }

    #signup-page .blank-space {
        display: none;
    }

    #signup-page .sided-form .sided-content {
        width: 90%;
    }
}
