@font-face {
    font-family: Futura;
    src: url(font/Futura-Medium.woff);
    font-weight: bold;
}

@font-face {
    font-family: FuturaPT-Obl;
    src: url(font/Futura-Book.woff);
}

.login {
    background: #f5f6f9;
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
/*    @include z-index();*/
}

.login_header {
    max-width: 340px;
    margin-bottom: 10px;
    text-align: center;
}

.login_header_image {
    width: 120px;
    max-width: 100%;
}

.login_footer {
    width: 500px;
    text-align:center;
    font-family: FuturaPT-Obl;
    font-size: 14px;
    text-align: center;
    color: #9b9b9b;
}

.login_footer_image {
    margin-top:40px;
    width: 50px;
    max-width: 100%;
}

.login_title {
    font-family: Futura;
    font-size: 21px;
    font-weight: 500;
    text-align: center;
    color: #262361;
   
}

.login_subtitle {
    font-family: FuturaPT-Obl;
    font-size: 17px;
    text-align: center;
    color: #9b9b9b;
}

.login_form {
    margin-top: 20px;
    margin-bottom: 20px;
    width: 100%;
    max-width: 260px;
    height: 250px;
    background-image: linear-gradient(to bottom, #29aae1, #0d71b9);
    padding-left: 120px;
    padding-right: 120px;
    padding-top: 50px;
    border-radius: 8px;
    color: red;
    box-shadow: 0px 0px 20px 3px rgba(0, 0, 0, 0.2);
}

.login_section {
     margin-bottom: 12px;
}

.login_section_last {
     margin-bottom: 0;
 }

.version_section {
    float:right;
    margin-bottom: 0;
    margin-right: -110px;
    text-align: right;
    font-family: Futura;
    font-size: 12px;
    color: #ffffff;
    width:150px;
}

.maintenance_section {
    padding-top: 40px;
    padding-left: 30px;
}

.login_form_title {
    font-family: Futura;
    font-size: 19px;
    font-weight: 500;
    line-height: 1.43;
    text-align: left;
    color: #ffffff;
}

.login input[type=text] {
    height: 30px;
    padding: 0 10px;
    width: 240px;
    background: white;
    border-radius: 4px;
    border: none;
    outline: none;
    font-size: 16px;
}

.login input[type=text]:hover {
    background-color: #eee;
}

.login input[type=text]:focus {
    box-shadow: 0px 0px 0px 2px rgba(0, 0, 0, 0.2);
}

.login input[type=password] {
    height: 30px;
    padding: 0 10px;
    width: 240px;
    background: white;
    border-radius: 4px;
    border: none;
    outline: none;
    font-size: 16px;
}

.login input[type=password]:hover {
    background-color: #eee;
}

.login input[type=password]:focus {
    box-shadow: 0px 0px 0px 2px rgba(0, 0, 0, 0.2);
}

.login_button {
    width: 142px;
    height: 40px;
    border: none;
    font-family: Futura;
    font-size: 15px;
    color: #FFFFFF;
    cursor: pointer;
    text-decoration: none;
    border-radius: 20px;
    background-color: #262361;
    transition: all 0.5s;
    margin: 5px;
}

.login_button span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
}

.login_button span:after {
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
}

.login_button:hover span {
    padding-right: 25px;
}

.login_button:hover span:after {
    opacity: 1;
    right: 0;
}

.login_button:hover {
    box-shadow: 0px 0px 0px 2px rgba(0, 0, 0, 0.2);
}

.login_button:focus {
    outline:0;
}

.login_error_message {
    font-family: Futura;
    color: orangered;
    margin-top: -13px;
}

/* Customize the label (the container) */
.container {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    height: 20px;
    font-family: Futura;
    font-size: 16px;
    line-height: 1.67;
    text-align: left;
    color: #ffffff;
}

/* Hide the browser's default checkbox */
.container input {
    position: absolute;
    opacity: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 20px;
    width: 20px;
    border-radius: 4px;
    background-color: #fff;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
    background-color: #eee;
}

/* When the checkbox is checked, add a blue background */
.container input:checked ~ .checkmark {
    background-color: #fff;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.container .checkmark:after {
    left: 7px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid black;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}


.is-hidden {
    display: none !important;
}

.modal {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: fixed;
    top: 24px;
    left: 0;
    z-index: 1;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    font-family: FuturaPT-Obl;
    font-size: 14px;
    color: #606061;
    width: 400px;
    position: relative;
    margin: 20% auto;
    padding: 5px 20px 13px 20px;
    border-radius: 10px;
    background: #fff;
    background: -moz-linear-gradient(#fff, #999);
    background: -webkit-linear-gradient(#fff, #999);
    background: -o-linear-gradient(#fff, #999);
}

.close {
    background: #606061;
    color: #FFFFFF;
    cursor: pointer;
    line-height: 25px;
    position: absolute;
    right: -12px;
    text-align: center;
    top: -10px;
    width: 24px;
    text-decoration: none;
    font-weight: bold;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    -moz-box-shadow: 1px 1px 3px #000;
    -webkit-box-shadow: 1px 1px 3px #000;
    box-shadow: 1px 1px 3px #000;
}

.close:hover {
    background: #00d9ff;
}