﻿body {
    background: url(../images/LF-Pattern-Small.png) repeat left top, linear-gradient(90deg, #047346 0%, #20AC4C 50%, #99CA3F 100%);
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-family: 'Open Sans', Arial, sans-serif;
}

.login-panel {
    position: absolute;
    inset-inline-start: 0;
    inset-block-start: calc(50% - 40px);
    transform: translateY(-50%);
    display: flex;
    background: #fff;
    border-radius: 0 500px 500px 0;
    padding: 60px 220px 60px 180px;
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.25), 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 24px;
}

.login-panel > img {
    height: 94px;
    width: auto;
    margin-inline-start: -95px;
}

    .login-panel .brand-label, .login-panel .SSO-label {
        display: inline-block;
        font-size: 20px;
        font-weight: 600;
        color: #12A537;
        margin-block-end: 12px;
    }

.login-form {
    text-align: start;
}

    .login-form .Validator {
        display: inline-block;
        margin-block-end: 12px;
        border: 1px solid red;
        background: rgba(255,0,0,0.05);
        border-radius: 4px;
        line-height: 18px;
        height: auto;
        width: auto;
        font-size: 13px;
        text-align: center;
        padding: 8px;
        max-width: 450px;
    }

    .login-form .btn-row {
        display: flex;
        flex-direction: row;
        column-gap: 8px;
    }

        .login-form input[type=submit] {
            display: inline-block;
            background: #206F4F;
            width: auto;
            font-size: 16px;
            line-height: unset;
            height: unset;
            padding: 8px 16px;
            font-weight: 600;
        }

            .login-form input[type=submit]:hover, .login-form input[type=submit]:focus {
                background: #1c6347;
            }

        .login-form .btn-SAML {
            position: relative;
            display: inline-block;
            cursor: pointer;
            background: #fff;
            border: 2px solid #206F4F;
            text-transform: uppercase;
            font-weight: 600;
            padding: 8px 16px;
            color: #206F4F;
            text-align: start;
        }

            .login-form .btn-SAML:hover, .login-form .btn-SAML:focus {
                border: 2px solid #1c6347;
                color: #1c6347;
            }

            .login-form .btn-SAML img {
                display: inline-block;
                height: 18px;
                width: auto;
            }

        .login-form .btn-SAML span {
            display: inline-block;
            width: auto;
            margin: 0;
        }

    .login-form .btn-row > span {
        display: flex;
        flex-direction: row;
        column-gap: 8px;
    }

        .login-form .btn-row > span > span {
            align-self: center;
        }

    .login-form .form-row {
        margin-block-end: 24px;
        font-size: 16px;
    }

        .login-form .form-row a {
            font-size: 13px;
        }

        .login-form .form-row input {
            display: block;
            padding: 12px;
            width: 450px;
            font-size: 13px;
        }

        .login-form .form-row span {
            display: block;
            text-align: start;
            font-size: 13px;
            color: #606E72; 
            margin-block-end: 4px;
        }

        .login-form .form-row span + span {
            padding: 12px;
            font-size: 13px;
            background: #f8f8f8;
            margin-block-end: 0;
            color: #3B4E50;
            width: 450px;
            border: 1px solid #ccc;
        }

.footer {
    position: fixed;
    display: flex;
    flex-direction: column;
    background-color: #206F4F;
    align-items: center;
    width: 100vw;
    inset-block-end: 0px;
    row-gap: 8px;
    color: white;
    padding: 8px;
    font-size: 13px;
}

    .footer a, .footer a:hover, .footer a:focus, .footer a:visited {
        color: white;
        text-decoration: underline;
    }

    .footer .developer-mode {
        font-weight: bold;
        color: #BBCE00;
    }

    .footer .corporate-details {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
