﻿@font-face {
    font-family: OpenSans;
    src: url(../fonts/OpenSans.ttf);
}

@font-face {
    font-family: OpenSans-Semibold;
    src: url(../fonts/OpenSans-SemiBold.ttf);
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

.container_auth {
    width: 100vw;
    height: 100vh;
    text-align: center;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.auth_content {
    box-shadow: 0px 1px 20px 6px rgba(0,0,0,0.1);
    -webkit-box-shadow: 0px 1px 20px 6px rgba(0,0,0,0.1);
    border-radius: 5px;
    width: 460px;
}

#logo img {
    height: 55px;
}

.captcha_text {
    display: none !important;
}

#captcha {
    display: none;
    margin: 0;
}

.captcha {
    display: none;
    margin-right: 15px;
}

#login-footer {
    color: #111;
    font-size: 11px;
    margin-bottom: 80px;
    margin-top: 35px;
    font-family: OpenSans-Semibold;
}

#logo {
    background-color: #0096C1;
    height: 144px;
    margin-bottom: 50px;
    width: 100%;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.control_group {
    margin: 0 auto;
    width: 330px;
}

.control_label {
    display: block;
    padding: 0;
    text-align: left;
    width: 100%;
}

input[type=text], input[type=password] {
    background-color: #f2f2f2;
    border-radius: 5px;
    border: none;
    border-bottom: solid 3px #fff;
    color: #444;
    display: block;
    height: 30px;
    margin: 0;
    transition: none;
    outline: none;
    padding: 0.25em 0.5em;
    width: calc(95% - 10px);
    padding-left: 20px;
    margin-top: 15px;
    font-family: OpenSans;
    font-size: 13px;
}

input[type=submit] {
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
    background-color: #0095bf;
    border: none;
    color: #fff;
    cursor: pointer;
    outline: none;
    padding: 0.5em 1em;
    -webkit-transition: background 0.3s ease, color 0.3s ease;
    -moz-transition: background 0.3s ease, color 0.3s ease;
    -o-transition: background 0.3s ease, color 0.3s ease;
    transition: background 0.3s ease, color 0.3s ease;
    height: 40px;
    border-radius: 5px;
    margin: 0;
    width: 100%;
    font-family: OpenSans;
    margin-top: 15px;
    font-size: 13px;
}

input[type=submit]:hover {
    background: #01B8E0;
}

input[type=submit]:active {
    background: #006D96;
}

.control-label{
    color: #fff;
}

.error {
    font-family: OpenSans-SemiBold;
    color: #FD5C59;
    font-size: 12px;
    margin-bottom: 0;
    display: none;
}

#container {
    width: 170px;
    height: 170px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -85px 0 0 -85px;
    z-index: 11003;
}

.title_code {
    font-family: OpenSans;
    font-size: 13px;
    text-align: left;
    color: #111;
    display: none;
}

.container_captcha {
    display: flex;
    align-items: center;
}

.background_progress {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 11000;
    -webkit-transition: opacity 0.15s ease-in-out;
    -moz-transition: opacity 0.15s ease-in-out;
    transition: opacity 0.15s ease-in-out;
    background-color: #00000080;
    display: flex;
    justify-content: center;
    align-items: center;
}

.show_progress {
    opacity: 1;
    display: flex;
}

.hide_progress {
    opacity: 0;
    display: none;
}

@media (max-width: 1024px) {
    .auth_content {
        width: 300px;
    }

    #logo {
        height: 110px;
        margin-bottom: 50px;
    }

    .control_group {
        width: 250px;
    }

    #login-footer {
        margin-bottom: 50px;
        margin-top: 30px;
    }

    #logo img {
        height: 45px;
    }
}