.auth-form {
    background-color: white;
    width: 40vw;
    border-radius: 0.6vw;
    box-shadow: 0 0 0.1vh grey;
    height: fit-content;
    min-height: fit-content;
    max-height: fit-content;
    display: flex;
    flex-direction: row;
    margin: 20dvh auto 20dvh auto;
}

.reg-form {
    background-color: white;
    width: 45vw;
    margin-inline: auto;
    border-radius: 0.6vw;
    box-shadow: 0 0 0.1vh grey;
    min-height: 80vh;
    height: fit-content;
    display: flex;
    flex-direction: row;
    margin-block: 20vh;
}

.form-gradient {
    width: 30%;
    min-height: 50vh;
    background: linear-gradient(40deg, rgba(255, 16, 216, 0.82), rgb(127, 19, 199), rgba(63, 94, 255,0.8));
    border-top-left-radius: 0.6vw;
    border-bottom-left-radius: 0.6vw;
}

.form-fields {
    margin-inline: auto;
    width: 70%;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    border-top-right-radius: 0.6vw;
    border-bottom-right-radius: 0.6vw;
    height: fit-content;
    align-self: center;
    padding: 0 1rem;
}

.login-password {
    margin-bottom: 5vh;
}

.form-fields h2 {
    margin-bottom: 2vh;
}

.form-fields > input {
    border: none;
    border-bottom: 2px solid lightgrey;
    width: 50%;
    height: 5vh;
    border-radius: 0;
    transition: 0.1s;
    font-size: medium;
}

.form-fields > input:focus {
    outline: none;
    border-bottom: 2px solid rgb(132, 0, 255);
}

.form-fields > a {
    color: rgb(152, 152, 152);
}

.auth-button {
    border: 3px solid rgb(255,16,216);
    color: rgb(70, 60, 88);
    background-color: transparent;
    border-radius: 5vh;
    padding: 2vh;
    transition: 0.3s;
    font-weight:bold;
    cursor: pointer;
    padding-inline: 4vh;
    margin-block: 1dvh;
}

.auth-button:hover {
    background-color: rgb(255,16,216);
    color: white;
}

.profile-title {
    text-align: center;
    margin-bottom: 5rem;
    margin-top: 7rem;
}

.input-validation-error {
    background-color: rgba(239, 144, 144, 0.6);
    color: #690000;
    font-size: small;
    padding-inline: 0.8dvw;
    border: 1px solid #690000;
    border-radius: 5dvh;
    width: fit-content;
}

textarea {
    max-width: 95%;
    height: 30dvh;
    min-width: 70%;
    max-width: 100%;
}

#review-header {
    text-align: center;
    margin-top: 10dvh;
    margin-bottom: 2dvh;
}

.review-label {
    margin-top: 2dvh;
}

.login-logo {
    position: relative;
    margin-top: 2dvh;
    margin-bottom: 5dvh;
}

#modal-auth-form {
    width: 100%;
    height: 100%;
}

.f-f-modal {
    padding-bottom: 3dvh;
}

.login-modal-close-btn {
    position: absolute;
    top: 1dvw;
    right: 1dvw;
}

#acceptTermsOfUse-label * {
    color: black;
}

.form-floating {
    margin-bottom: 0.5rem;
}
