﻿* {
    margin: 0;
    padding: 0;
    font-family:Arial,  sans-serif;
}

html,
body {
    height: 100%;
}

body {
    background-color: #201b14;
    background-image: url(../../images/tlnt-bg-min.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.login-page {
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: center;
}
.dark-blue {
    color: #343b46 !important;
}
.btn {
    border: 0;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    text-shadow: none;
    background: #ddd;
    line-height: 25px;
    padding-left: 15px;
    padding-right: 15px;
    cursor: pointer;
}

.btn-primary {
    color: #fff;
    background: #666f80;
    font-weight: 400;
    line-height: 18px;
    width: 100%;
    padding: 15px;
}

    .btn-primary:focus,
    .btn-primary:active,
    .btn-primary:active:focus {
        background: #4f5664;
        outline: none;
    }

.form {
    position: relative;
    z-index: 1;
    background: #fafafa;
    width: auto;
    margin: 0 auto;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    border: 0;
    box-shadow: 0px 0px 80px 1px rgba(0, 0, 0, 0.15);
}

ul {
    padding: 0;
    font-size: 11px;
    list-style: none;
}

.field-validation-error {
    font-size: 11px;
}

.form .logo-wrap {
    background: url(/images/logo-login.png);
    width: 150px;
    margin: 0 auto 30px;
    box-sizing: border-box;
    border-radius: 10px;
    height: 150px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

    .form .logo-wrap img {
        display: block;
        width: 100%;
        border-radius: 10px;
    }

.form-group {
    position: relative;
}

    .form-group span.fa {
        position: absolute;
        top: 28%;
        right: 10px;
        color: #343b46;
    }

.form input {
    outline: 0;
    background: #f2f2f2;
    width: 100%;
    border: 0;
    margin: 0 0 15px;
    padding: 15px;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    box-sizing: border-box;
    font-size: 14px;
}

.form button:hover {
    background-color: #4f5664;
}

.checkbox {
    text-align: left;
}

.form .message {
    margin: 15px 0 0;
    color: #b3b3b3;
    font-size: 12px;
}

    .form .message a {
        color: #343b46;
        text-decoration: none;
    }

.form .register-form {
    display: none;
}

.logo-wrap img {
    width: 100%;
}

.container {
    position: relative;
    z-index: 1;
    max-width: 660px;
    margin: 0 auto;
}

.checkbox label {
    padding: 0;
    font-size: 11px;
}

.container:before,
.container:after {
    content: "";
    display: block;
    clear: both;
}

.info {
    margin: 0px auto 50px;
    text-align: center;
}

    .info h1,
    .info h1 span {
        margin: 0 0 15px;
        padding: 0;
        font-size: 28px;
        font-weight: 700;
        color: #1a1a1a;
    }

    .info span {
        color: #4d4d4d;
        font-size: 18px;
    }

        .info span a {
            color: #000000;
            text-decoration: none;
        }

        .info span .fa {
            color: #EF3B3A;
        }

.remember-check {
    text-align: left;
    margin: 10px 0;
    font-size: 12px;
}

    .remember-check input {
        opacity: 0;
        display: none;
    }

    .remember-check label {
        cursor: pointer;
        position: relative;
    }

        .remember-check label::before {
            border: 2px solid #656f79;
            content: "";
            width: 15px;
            height: 15px;
            display: inline-block;
            vertical-align: middle;
            margin-right: 10px;
            background: #eee;
        }

        .remember-check label::after {
            position: absolute;
            border-left: 2px solid #656f79;
            border-bottom: 2px solid #656f79;
            content: "";
            width: 11px;
            height: 4px;
            transform: rotate(-45deg);
            display: inline-block;
            vertical-align: middle;
            margin-right: 10px;
            left: 3px;
            top: 6px;
            opacity: 0;
        }

.remember-checker:checked ~ label::after {
    opacity: 1;
}

textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus {
    border-color: rgba(82, 168, 236, 0.8);
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
    -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6)
}

.choose-lang {
    display: inline-block;
    background: #eee;
    padding: 6px 14px;
    border-radius: 5px;
}

    .choose-lang .lang {
        display: inline-block;
        width: 25px;
        margin-right: 10px;
        font-size: 14px;
    }

        .choose-lang .lang:hover a {
            text-decoration: underline;
            font-weight: 600;
        }

        .choose-lang .lang:last-child {
            margin-right: 0;
        }

.choose-lang-text {
    font-size: 14px;
    font-weight: 600;
    margin-right: 10px;
    color: #343b46;
}

@@media screen and (max-width: 500px) {
    .login-box {
        width: 100%;
        height: 100vh;
        padding: 30px 0;
        border-radius: 0;
    }

    .login-box-body {
        padding: 0 20px;
    }
}

#PasswordSpan {
    display: none;
    color: #f70808;
}
