<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">form
{
    height: auto;
    overflow-y: hidden;
    background: radial-gradient(#EAEAEA, white);
    padding: 25px;
    border-radius: 10px;
}
    label
    {
        color: #999999;
    }
    input[type='text'], input[type='date'], select, input[type='password'], input[type='email']
    {
        background: none;
        color: var(--blue);
        border: none;
        border-bottom: 1px solid #BBBBBB;
        font-size: 14pt;
        padding: 2px 0 2px 5px;
    }
        input[type='text']:not([value]), input[type='password']:not([value])
        {
            color: var(--blue);
        }
        input::placeholder
        {
            color: #BBBBBB;
        }
        input[type='text']:focus, input[type='password']:focus
        {
            color: var(--blue);
            border-bottom: 1px solid var(--blue);
        }
        input[type='text']:invalid
        {
            box-shadow: none;
        }
    .FormFeedback
    {
        width: 100%;
        height: auto;
        overflow-y: hidden;
        color: var(--blue);
        font-weight: bold;
        text-align: center;
    }
    input[type='submit']
    {
        width: 100%;
        height: 50px;
        border-radius: 5px;
        color: #999999;
        border: none;
        background: #EAEAEA;
        display: inline-block;
        position: relative;
        float: left;
        clear: both;
    }
        input[type='submit']:hover
        {
            background: #EFEFEF;
        }
        .ReadyToSubmit
        {
            /* color: #999999 !important; */
            color: var(--blue) !important;
        }
            .ReadyToSubmit:hover
            {
                background: #EAEAEA !important;
                /* text-shadow: 0 0 1px #999999; */
                text-shadow: 0 0 1px var(--blue);
            }
</pre></body></html>