#page-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
}

#create-user-account {
    width: 100%;
    height: 100%;
    justify-self: center;
    align-self: center;
    display: block;
    font-size: 1em;
    font-family: var(--paragraph-font);
    background-color: var(--primary-color-3);
    align-items: center;
}

#create-user-account form {
    border-radius: 0;
}

#sign-up {
    width: 100%;
    height: 100%;
    background-color: var(--primary-color2);
    color: var(--primary-color);
    justify-self: center;
    align-self: center;
}

#sign-up-content-wrapper {
    width: 90%;
    height: 90%;
    justify-content: center;
    align-self: center;
    margin: 0 auto;
    text-align: center;
}

#sign-up-content-wrapper p {
    color: var(--poor-white);
    text-align: left;
}

#sign-up #organization-logo {
    width: 250px;
    height: 250px;
    animation-name: rotate-logo;
    animation-duration: 10s;
    animation-iteration-count: infinite;
    /* animation-timing-function: linear; */
    animation-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1, 0.522, 0.077);
}

/* ATTRIBUTES STYLING */
.category {
    margin-bottom: 20px;
}

.category h3 {
    margin-bottom: 5px;
    color: var(--primary-color);
}

.options label {
    display: block;
    margin: 4px 0;
}

.search {
    /* width: 100%; */
    padding: 6px;
    margin-bottom: 8px;
}

.search:valid {
    border-right: 1px solid var(--accent1-color);
}

.attribute-checkbox {
    display: inline-block;
    width: fit-content;
    margin: var(--base-margin);
}

@keyframes rotate-logo {
    0% {
        transform: rotateY(0deg);
    }

    100% {
        transform: rotateY(360deg);
    }
}

/* MEDIA QUARRY - SMALL-TAB AND LARGE-PHONE SCREEN */
@media screen and (max-width: 890px) {
    #page-content {
        display: grid;
        grid-template-columns: 1fr;
        height: 100%;
    }
}

/* MEDIA QUARRY - SMALL-PHONE SCREEN */
@media screen and (max-width: 489px) {}