.AuthBody {
    display: flex;
    width: 100%;
    height: calc(100dvh - 90px);
    padding: 2rem;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.AuthWrapper {
    width: 100%;
    max-width: 900px;
    border: 2px solid var(--clr-cipher);
    border-radius: 1rem;
}

input[type="radio"] {
    display: none;
}

form {
    display: none;
}

/* Auth Options */
.AuthWrapper .AuthOptions {
    width: 100%;
    border-bottom: 2px solid var(--clr-parchment);
    display: flex;
    justify-content: center;
    align-items: center;
}

.AuthOptions>div {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.AuthOptions>div label {
    font-weight: 600;
    width: 100%;
    font-size: 1.6rem;
    text-align: center;
    padding: 0.8rem;
    cursor: pointer;
    color: var(--clr-cipher);
}

.AuthOptions>div:first-child label {
    border-right: 2px solid var(--clr-parchment)
}

.AuthOptions>div input:checked+label {
    transition: all 0.5s ease;
    color: var(--clr-parchment)
}

/* Forms */
form[data-opened="true"] {
    padding: 0 1rem 1rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    height: 100%;
    width: 100%;
    margin-top: 1rem;
}

@media screen and (max-width: 450px) {
    .AuthWrapper .AuthOptions {
        flex-direction: column;
    }

    .AuthOptions>div:first-child label {
        border-right: none;
        border-bottom: 2px solid var(--clr-parchment)
    }

    .FormHeader {
        display: none;
    }
}