/*
 *
 *  This document is the CONFIDENTIAL PROPERTY of Corero Network Security, Inc.
 *  Copyright (C) 2016-2023 by Corero Network Security, Inc. All rights reserved.
 *  Notice of copyright on this document does not constitute publication.
 *
 */

@font-face {
    font-family: AvenirLT;
    src: url("../fonts/avenirLtStd55Roman.otf") format("opentype");
    font-weight: normal;
    font-style: normal;
}

#vertical-line {
    border-left: 2px solid #c2c5c7;
    height: 100%;
}

#subtitle {
    text-align: justify;
    font-family: AvenirLT, sans-serif;
    font-size: 20px;
    color: #343d45;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
}

.background-image {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1000;
  /* Linear gradient is used to shade the background images */
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../imgs/login_background.png");
  background-position: center top;
}

img {
    max-width: 100%;
    max-height: 100%;
}

.logo-container {
    height: 120px;
    text-align: center;
    display: flex;
    align-items: center;
}

.login-container {
    margin-top: 118px;
}

.logout-container {
    margin-top: 193px;
}

.information-container {
    margin-top: 20px;
    font-family: AvenirLT, sans-serif;
    font-size: 20px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.33;
    letter-spacing: normal;
    text-align: center;
    color: #71777D;
}

.form-container {
    box-sizing: border-box;
    width: 407px;
    margin: 60px auto 0;
    padding: 20px;
    border-radius: 5px;
    background-color: #ffffff;
    box-shadow: 0 1px 16px 0 rgba(79, 89, 99, 0.1);
}

.input {
    box-sizing: border-box;
    width: 265px;
    height: 30px;
    display: block;
    margin: 20px auto 0;
    padding: 0 10px;

    border-radius: 3px;
    background-color: #ffffff;
    border: solid 1px #001738;

    opacity: 0.7;
    font-family: AvenirLT, sans-serif;
    font-size: 13px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #5c7694;

    vertical-align: middle;

    -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

input:focus {
    border: solid 2px #001738;
    box-shadow: 0 2px 6px 0 rgba(92, 117, 147, 0.3);
    -webkit-box-shadow: 0 2px 6px 0 rgba(92, 117, 147, 0.3);
}

.has-errors {
    border-radius: 3px;
    border: solid 1px #e6144c;
}

.errors-container {
    box-sizing: border-box;
    height: 20px;
    padding-top: 2px;
    padding-bottom: 2px;
    margin: 0 51px;
}

.errors-container p {
    margin: 0;
    font-family: AvenirLT, sans-serif;
    font-size: 10px;
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #e6144c;
}
button:hover{
	background-color: black;
}
button {
    padding: 0;
    border: 0;
    transition: all 400ms;
    border-radius: 3.5px;
    background-color: #001738;
    font-family: AvenirLT, sans-serif;
    font-size: 14px;
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: #ffffff;

    overflow: visible;

    align-items: inherit;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.login-button{
    display: block;
    width: 265px;
    height: 30px;
    margin: 30px auto 18px;
    cursor: pointer;
}

.log-back-container {
    margin: 60px auto;
}
.log-back:hover {
    background-color: black;
}
.log-back {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 210px;
    height: 30px;
    margin: 30px auto 18px;
    transition: all 400ms;
    padding: 0;
    border: 0;

    border-radius: 2px;
    background-color: #001738;
    box-shadow: 0 1px 2px 0 rgba(79, 89, 99, 0.3);
    font-family: AvenirLT, sans-serif;
    font-size: 13px;
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: #ffffff;
    text-decoration: none;

    overflow: visible;
}

.copyright-information-container {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
}

.copyright-information {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    margin: 0;

    font-family: AvenirLT, sans-serif;
    font-size: 12px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: #a5b4c4;
}
.hide {
    display: none;
}


