@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Montserrat:300,400,700&display=swap");
@import url("https://fonts.googleapis.com/css?family=PT+Serif:400,700&display=swap");

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

*, *:before, *:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

:focus, :active {
    outline: none;
}

a:focus, a:active {
    outline: none;
}

aside, nav, footer, header, section {
    display: block;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    min-width: 320px;
    position: relative;
    width: 100%;
    color: #000;
}

body {
    font-size: 100%;
    line-height: 1;
    font-family: "Montserrat", sans-serif;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    background: radial-gradient(#eee, transparent);
}

body.lock {
    overflow: hidden;
}

@media (max-width: 767.98px) {
    body.lock {
        width: 100%;
        position: fixed;
        overflow: hidden;
    }
}

input, button, textarea {
    font-family: "Montserrat", sans-serif;
}

input::-ms-clear {
    display: none;
}

button {
    cursor: pointer;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

.wrapper {
    width: 100%;
    min-height: 100%;
    overflow: hidden;
    background-position: center!important;
    background-size: cover!important;
}

.container {
    max-width: 1170px;
    margin: 0 auto;
    width: 100%;
}

img.img-responsive {
    max-width: 100%;
}

@media (max-width: 1182px) {
    .container {
        max-width: 970px;
    }
}

@media (max-width: 992.98px) {
    .container {
        max-width: 750px;
    }
}

@media (max-width: 767.98px) {
    .container {
        max-width: none;
        padding: 0 10px;
    }
}

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

.login h2 {
    margin-bottom: 15px;
}

.login__form {
    height: auto;
    width: 320px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0px 5px 15px #000;
    overflow:hidden;
}
.header__logo {
    background: #d2d40f;
    text-align:center;
    padding: 20px 70px;
}

.header__logo img{
    background: 0 0;
    vertical-align: middle;
}

.form div, form {
    width: 100%;
    position: relative;
    margin: 15px 0 15px;
}

form{
    padding:15px 25px
}

.form input {
    margin: 0;
    padding: 10px;
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 3px;
    overflow: hidden;
    padding-right: 42px;
}

.form input:focus {
    border-color: #03a9f4;
    transition: 0.5s;
}

.form label {
    position: absolute;
    top: 3px;
    left: 15px;
    padding: 0.625rem 0;
    font-size: .8rem;
    color: #777474;
    pointer-events: none;
    transition: 0.5s;
}

.form input:focus ~ label,
.form input:valid ~ label,
.form input:not([value=""]) ~ label {
    top: -5px;
    left: 10px;
    background: #fff;
    padding: 0 5px;
    color: #03a9f4;
    font-size: 0.75rem;
}

.form input {
    -webkit-box-shadow: inset 0 0 0 50px #fff;
    -webkit-text-fill-color: #000;
}

.form__submit {
    text-align: right;
}

.btn {
    border: none;
    outline: none;
    color: #fff;
    background-color: #03a9f4;
    padding: 0.5rem 1.25rem;
    cursor: pointer;
    border-radius: 0.2rem;
    font-size: .8rem;
}

.btn:hover {
    background-color: #1cb1f5;
}

.form__email:after, .form__password:after {
    position: absolute;
    text-align:center;
    width: 36px;
    height: 36px;
    line-height: 36px;
    font-family: icon, serif;
    color: #7098ab;
}

.form__email:before, .form__password:before{
    content:'';
    background: #f9f9f9;
    position: absolute;
    right: 1px;
    top: 1px;
    width: 36px;
    height: 36px;
    border-left: 1px solid #e0e0e0;
}

.form__email:after {
    content: '\f101';
    right: 0;
}

.form__password:after {
    content: '\f100';
    right: -2px;
}

.login__form .alert{
    text-align:center;
    font-size: .9rem;
    line-height: 1.25;
    font-weight: 400;
    padding:10px;
    color:#000000;
    background:#ffbc00;
}

.form__remember {
    position:relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.form__remember input.checkbox {
    width: 16px;
    height: 16px;
    -webkit-box-shadow: none;
    cursor: pointer;
}

.form__remember label {
    position:relative;
    display: block;
    top: auto!important;
    left: auto!important;
    pointer-events: all;
    cursor: pointer;
    color: #000!important;
}