﻿@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

html, body, #secureForm {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    background-image: url('/content/images/login-background.png');
    background-position: 50% 50%;
    background-size: cover;
    font-family: 'Montserrat', Helvetica, Arial, sans-serif;
}

a {
    color: #000000;
}

.mastertable {
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    background-color: rgba(200,200,200,0.25);
    font-family: 'Montserrat', Helvetica, Arial, sans-serif;
    height: 100%;
    overflow: auto;
    width: 100%;
}

.logoContainer {
    text-align: center;
}

#imgLogo {
    margin: 3em auto;
    max-height: 3em;
    max-width: 430px;
    width: 100%;
}

.login-holder {
    background: white;
    border-radius: 14px;
    border-width: 0;
    box-shadow: rgba(33, 43, 54, 0.15) 0px 30px 40px 0px, rgba(33, 43, 54, 0.08) 0px 2px 16px 0px;
    box-sizing: border-box;
    padding-bottom: 30px;
    width: 480px;
}

    .login-holder header {
        align-items: center;
        border-bottom: 1px solid #dfe3e8;
        display: flex;
        padding: 0 30px;
    }

        .login-holder header h1 {
            color: #000000;
            display: block;
            font-size: 15px;
            font-weight: 600;
            line-height: 20px;
            margin: 20px 34px;
            text-align: center;
            width: 100%;
        }

    .login-holder footer {
        display: block;
        padding: 0 30px;
        text-align: center;
    }

        .login-holder footer p {
            display: block;
            text-align: center;
        }

.secure-content {
    padding: 0 30px;
}

    .secure-content label {
        display: block;
        margin-top: 2em;
        text-align: left;
        width: auto;
    }

.login-holder .error {
    position: absolute;
}

.secure-input {
    border-radius: 4px;
    border-style: solid;
    border-width: 1px;
    border-color: #dfe3e8;
    box-shadow: 0 4px 8px 0 rgba(55, 66, 255, 0.15);
    box-sizing: border-box;
    font-family: 'Montserrat', Helvetica, Arial, sans-serif;
    font-size: 15px;
    margin-top: .25em;
    padding: 13px 16px;
    width: 100%;
}

.secure-password {
    margin-right: -44px;
    padding-right: 48px;
}

#loginPasswordRevealer::after {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    display: inline-block;
    height: 26px;
    width: 26px;
    vertical-align: middle;
    cursor: pointer;
}

#loginPasswordRevealer.password-hidden::after {
    background-image: url('/images/icons/eye.svg');
}

#loginPasswordRevealer.password-shown::after {
    background-image: url('/images/icons/eye-slash.svg');
}

input[type="checkbox"] {
    margin-top: 2em;
}

.login-remember-container label {
    display: inline;
}

.secure-button {
    margin-top: 1em;
    width: 100%;
    height: 40px;
    background-color: #37424b;
    border-radius: 44px;
    border-width: 0;
    font-weight: bold;
    color: white;
    cursor: pointer;
    box-shadow: 0 5px 20px 0 rgba(55, 66, 255, 0.4);
}

.login-error {
    border-radius: 6px;
    border: 1px solid rgb(252, 58, 95);
    display: block;
    background-color: rgba(252, 58, 95, 0.15);
    padding: 18px 20px;
    color: #000000;
    margin: 24px 30px 0;
    box-sizing: border-box;
}

#copyright {
    display: none;
}

@media (max-width:479px) {
    .login-holder {
        border-radius: 0;
        width: 100%;
    }
}
