﻿* {
    padding: 0;
    margin: 0;
}

body {
    background-color: #fff;
    font-family: 'Open Sans', serif;
    font-weight: 400;
}

a, button {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-tap-highlight-color: transparent;
}

.login-bg-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
}

.login-box {
    margin: 2.5em;
    width: 100%;
    padding: 0.2em;
    box-sizing: border-box;
    border-radius: 0.4em;
    background-color: #fff;
}

@media screen and (min-width: 720px) {
    .login-box {
        width: 500px;
        padding: 1em;
        border: 1px solid rgba(0, 0, 0, 0.2);
    }
}

.login-box--header {
    text-align: center;
}

    .login-box--header img {
        max-width: 100%;
        height: 90px;
    }

.login-box--content {
    margin: 1.5em 0 1em 0;
}

    .login-box--content .form-title {
        font-size: 1.2em;
        font-weight: 400;
        margin: 0 0 1em 0.3em;
    }

    .login-box--content .form--field {
        width: 100%;
        display: flex;
        align-items: center;
        margin: 0.4em 0;
        border-radius: 0.3em;
        border: 1px solid #d1d1d1;
        box-sizing: border-box;
    }

        .login-box--content .form--field input {
            padding: 0.9em;
            outline: 0;
            display: flex;
            flex-grow: 1;
            border: 0;
            border-radius: 0.3em;
        }

            .login-box--content .form--field input::placeholder {
                font-size: 1em;
            }

    .login-box--content .form--field--password--toogle {
        background-color: transparent;
        background-repeat: no-repeat;
        background-size: cover;
        padding: 0.8em;
        margin: 0.6em;
        border: 0;
        outline: 0;
        cursor: pointer;
    }

    .login-box--content .form--field--password--toogle__visible {
        background-image: url('../assets/eye.png');
    }

    .login-box--content .form--field--password--toogle__invisible {
        background-image: url('../assets/eye-slash.png');
    }

    .login-box--content .form--recaptcha {
        margin-top: 0.5em;
    }


.login-box--content .form-errors {
    color: #fff;
    background-color: #db0021;
    padding: 0.5em;
    list-style-type: none;
    margin: 1em 0;
}

    .login-box--content .form-errors li:not(:last-child) {
        font-style: italic;
        margin-bottom: 0.4em;
    }

    .login-box--content .form-errors li::before {
        content: '- ';
    }

.login-box--content .form--actions {
    margin-top: 2em;
}

    .login-box--content .form--actions .form--submit {
        width: 100%;
        padding: 0.6em;
        outline: 0;
        font-size: 1.2em;
        border-radius: 0.3em;
        border: 1px solid #003a49;
        cursor: pointer;
        user-select: none;
        color: white;
        background-color: #005a70;
    }

        .login-box--content .form--actions .form--submit:not([disabled]):hover {
            background-color: #004657;
        }

    .login-box--content .form--actions .form--cancel {
        width: 100%;
        padding: 0.6em;
        outline: 0;
        font-size: 1.2em;
        border-radius: 0.3em;
        border: 1px solid #003a49;
        cursor: pointer;
        user-select: none;
        color: white;
        background-color: #dc3545;
    }

        .login-box--content .form--actions .form--cancel:not([disabled]):hover {
            background-color: #dc3545;
        }

    .login-box--content .form--actions .form--subaction {
        margin: 1.2em 0;
        text-align: center;
    }

        .login-box--content .form--actions .form--subaction a {
            text-decoration: none;
            color: #383c3c;
            font-size: 1.2em;
        }

.form-user-bg-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
}

.form-user-box {
    margin: 2.5em;
    width: 100%;
    padding: 0.2em;
    box-sizing: border-box;
    border-radius: 0.4em;
    background-color: #fff;
}

@media screen and (min-width: 720px) {
    .form-user-box {
        width: 100%;
        min-width: 500px;
        padding: 1em;
        border: 1px solid rgba(0, 0, 0, 0.2);
    }
}

.form-user-box--header {
    text-align: center;
}

    .form-user-box--header img {
        max-width: 100%;
        height: 90px;
    }

.form-user-box--content {
    margin: 1.5em 0 1em 0;
}

    .form-user-box--content .form-title {
        font-size: 1.2em;
        font-weight: 400;
        margin: 0 0 1em 0.3em;
    }

    .form-user-box--content .form--field {
        width: 100%;
        display: flex;
        align-items: center;
        margin: 0.4em 0;
        border-radius: 0.3em;
        border: 1px solid #d1d1d1;
        box-sizing: border-box;
    }

        .form-user-box--content .form--field input {
            padding: 0.9em;
            outline: 0;
            display: flex;
            flex-grow: 1;
            border: 0;
            border-radius: 0.3em;
        }

            .form-user-box--content .form--field input::placeholder {
                font-size: 1em;
            }

    .form-user-box--content .form--field--password--toogle {
        background-color: transparent;
        background-repeat: no-repeat;
        background-size: cover;
        padding: 0.8em;
        margin: 0.6em;
        border: 0;
        outline: 0;
        cursor: pointer;
    }

    .form-user-box--content .form--field--password--toogle__visible {
        background-image: url('../assets/eye.png');
    }

    .form-user-box--content .form--field--password--toogle__invisible {
        background-image: url('../assets/eye-slash.png');
    }

    .form-user-box--content .form--recaptcha {
        margin-top: 0.5em;
    }

    .form-user-box--content .form-errors {
        color: #fff;
        background-color: #db0021;
        padding: 0.5em;
        list-style-type: none;
        margin: 1em 0;
    }

        .form-user-box--content .form-errors li:not(:last-child) {
            font-style: italic;
            margin-bottom: 0.4em;
        }

        .form-user-box--content .form-errors li::before {
            content: '- ';
        }

    .form-user-box--content .form--actions {
        margin-top: 2em;
    }

        .form-user-box--content .form--actions .form--submit {
            width: 100%;
            padding: 0.6em;
            outline: 0;
            font-size: 1.2em;
            border-radius: 0.3em;
            border: 1px solid #003a49;
            cursor: pointer;
            user-select: none;
            color: white;
            background-color: #005a70;
        }

            .form-user-box--content .form--actions .form--submit:not([disabled]):hover {
                background-color: #004657;
            }

        .form-user-box--content .form--actions .form--cancel {
            width: 100%;
            padding: 0.6em;
            outline: 0;
            font-size: 1.2em;
            border-radius: 0.3em;
            border: 1px solid #003a49;
            cursor: pointer;
            user-select: none;
            color: white;
            background-color: #dc3545;
        }

            .form-user-box--content .form--actions .form--cancel:not([disabled]):hover {
                background-color: #dc3545;
            }

        .form-user-box--content .form--actions .form--subaction {
            margin: 1.2em 0;
            text-align: center;
        }

            .form-user-box--content .form--actions .form--subaction a {
                text-decoration: none;
                color: #383c3c;
                font-size: 1.2em;
            }

.btn-delete-data {
    width: 100%;
    padding: 0.6em;
    outline: 0;
    font-size: 1.2em;
    border-radius: 0.3em;
    border: 1px solid;
    cursor: pointer;
    user-select: none;
    color: white;
    background-color: #004657;
}

.background-grey {
    background-color: #f5f5f5;
    min-width: 100%;
}

.base-padding {
    padding-top: 30px;
    padding-bottom: 40px;
}


div.hr {
    margin-top: 20px;
    margin-bottom: 20px;
    border: 0;
    border-top: 1px solid #eee;
    text-align: center;
    height: 0px;
    line-height: 0px;
}

.hr-title {
    background-color: #fff;
}


.g-recaptcha {
    display: inline-block;
    text-align: center;
}

.btn-login {
    width: 100%;
    padding: 0.6em;
    outline: 0;
    font-size: 1.2em;
    border-radius: 0.3em;
    border: 1px solid;
    cursor: pointer;
    user-select: none;
    color: white;
    background-color: #cccccc;
}

.btn-block {
    display: block;
    width: 100%;
    border: 1px solid #000;
}

.btn-facebook {
    color: #fff;
    background-color: #3b5998
}

    .btn-facebook:hover {
        color: #fff;
        background-color: #3a61b3
    }

    .btn-facebook:focus {
        color: #fff;
        background-color: #3b5998;
        -webkit-box-shadow: 0 0 0 2px rgba(0, 0, 0, .1) inset;
        box-shadow: inset 0 0 0 2px rgba(0, 0, 0, .1)
    }

.btn-facebook {
    color: #fff;
    background-color: #3b5998
}

    .btn-facebook:hover {
        color: #fff;
        background-color: #3a61b3
    }

    .btn-facebook:focus {
        color: #fff;
        background-color: #3b5998;
        -webkit-box-shadow: 0 0 0 2px rgba(0, 0, 0, .1) inset;
        box-shadow: inset 0 0 0 2px rgba(0, 0, 0, .1)
    }

.btn-facebook:before {
    content: "\F09A"
}

.btn-google:before {
    display: inline-block;
    content: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgNTMzLjUgNTQ0LjMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTUzMy41IDI3OC40YzAtMTguNS0xLjUtMzcuMS00LjctNTUuM0gyNzIuMXYxMDQuOGgxNDdjLTYuMSAzMy44LTI1LjcgNjMuNy01NC40IDgyLjd2NjhoODcuN2M1MS41LTQ3LjQgODEuMS0xMTcuNCA4MS4xLTIwMC4yeiIgZmlsbD0iIzQyODVmNCIvPjxwYXRoIGQ9Ik0yNzIuMSA1NDQuM2M3My40IDAgMTM1LjMtMjQuMSAxODAuNC02NS43bC04Ny43LTY4Yy0yNC40IDE2LjYtNTUuOSAyNi05Mi42IDI2LTcxIDAtMTMxLjItNDcuOS0xNTIuOC0xMTIuM0gyOC45djcwLjFjNDYuMiA5MS45IDE0MC4zIDE0OS45IDI0My4yIDE0OS45eiIgZmlsbD0iIzM0YTg1MyIvPjxwYXRoIGQ9Ik0xMTkuMyAzMjQuM2MtMTEuNC0zMy44LTExLjQtNzAuNCAwLTEwNC4yVjE1MEgyOC45Yy0zOC42IDc2LjktMzguNiAxNjcuNSAwIDI0NC40bDkwLjQtNzAuMXoiIGZpbGw9IiNmYmJjMDQiLz48cGF0aCBkPSJNMjcyLjEgMTA3LjdjMzguOC0uNiA3Ni4zIDE0IDEwNC40IDQwLjhsNzcuNy03Ny43QzQwNSAyNC42IDMzOS43LS44IDI3Mi4xIDAgMTY5LjIgMCA3NS4xIDU4IDI4LjkgMTUwbDkwLjQgNzAuMWMyMS41LTY0LjUgODEuOC0xMTIuNCAxNTIuOC0xMTIuNHoiIGZpbGw9IiNlYTQzMzUiLz48L3N2Zz4=);
    height: 13px;
    width: 13px;
    position: relative;
    top: 2px
}

.btn-facebook:before,
.btn-google:before {
    font-family: Font Awesome\ 5 Brands;
    font-size: 16px;
    margin-right: 14px
}

.error-bg-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
}

.error-box {
    margin: 2.5em;
    width: 100%;
    padding: 0.2em;
    box-sizing: border-box;
    border-radius: 0.4em;
    background-color: #fff;
}

@media screen and (min-width: 720px) {
    .error-box {
        width: 500px;
        padding: 1em;
        border: 1px solid rgba(0, 0, 0, 0.2);
    }
}

.error-box--header {
    text-align: center;
}

    .error-box--header img {
        max-width: 100%;
        height: 90px;
    }

.error-box--content {
    margin: 1.5em 0 1em 0;
}
