@media screen and (orientation:portrait)
{
    main > form:not(#authenticated)
    {
        height: 100%;
        grid-template-rows: auto auto auto auto auto auto 1fr auto;
    }

    main > form#authenticated
    {
        height: 100%;
        grid-template-rows: auto auto 1fr auto;
    }
}

main > form > figure
{
    font-size: calc(var(--size-default) * 3.5);
}

main > form > textarea
{
    resize: both;
    min-width: 100%;
}

main
{
    min-width: 50%;
}
