.auth-flexbox-filler {
    flex-grow: 0.4;
}
.auth-background-container {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    justify-content: center;
    align-items: center;
    flex-grow: 0.6;

    .auth-form-header {
        padding: 10px 40px;
        border-radius: 10px;
        background-color: var(--yellow);
    }

    .auth-form {
        display: flex;
        flex-direction: column;
        row-gap: 20px;
        justify-content: center;
        align-items: center;
        width: 65%;
    }

    .auth-form-field {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        background-color: var(--light_green);
        padding: 10px 10px 20px 40px;
        border-radius: 10px;
        width: 100%;

    }

    .auth-form-field input {
        border: none;
        border-radius: 5px;
        font-size: 20px;
        background: var(--yellow);
        box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.08) inset;
        width: 65%;
    }

    .auth-form-field label {
        padding: 0 50px 0 5px;
    }

    #submit {
        background-color: var(--light_green);
        border: none;
        border-radius: 10px;
        padding: 10px 15px;
        font-size: 15px;
    }

}