*{
    box-sizing: border-box;
}
body{
    padding: 0px;
    margin: 0px;
}
img{
    max-width: 100%;
}
.logon-wrap{
    overflow: auto;
    height: 100vh;
    width: 100vw;
}
.logon-bg{
    top: 0px;
    height: 100%;
    left: 0px;
    position: absolute;
    z-index: 1;
    width: 100%;
    overflow: hidden;
}
.logon-bg img{
    max-width: 100%;
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.logon-bg:after {
    background: #00000026;
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}
.contain{
    z-index: 2;
    display: block;
    position: relative;
    max-width: 1270px;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    vertical-align: middle;
}
.grid{
    display: -ms-grid;
    display: -moz-grid;
    display: grid;
    grid-gap: 10px;
    gap: 10px;
}
.grid-1-1{
    grid-template-columns: 1fr 1fr;
}
.grid-1-3{
    grid-template-columns: 1fr 3fr;
}
.logon-content{
    align-items: center;
    vertical-align: middle;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid white;
    background: #ffffffe6;
}
.input-wrap{
    margin-bottom: 20px;
    width: 100%;
}
.input-wrap input {
    outline: none;
    padding: 15px 10px;
    background: white;
    border-radius: 5px;
    border: 1px solid #d3d3d3;
    width: 100%;
    transition: 250ms ease-in-out;
}
.input-wrap input:focus-visible{
    border: 1px solid #b0b1c5;
}
.input-wrap label {
    display: block;
}
.login-button {
    padding: 10px 15px;
    background: #292d78;
    border: 1px solid #292d78;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
}
.form-actions{
    margin-top: 15px;
}
.form-actions a{
    margin-left: 5px;
    vertical-align: -webkit-baseline-middle;
    font-size: 14px;
    text-decoration: unset;
    cursor: pointer;
}
.profile-menu{
    text-align: center;
    padding: 150px 0px;
    border-right: 1px solid #dbdbdb;
}
.logon{
    transition: 250ms ease-in-out;
    opacity: 0;
}
.logon h2{
    margin-top:0px;
}
.logon.active{
    opacity: 1;
}
button{
    cursor: pointer;
}
.form-actions > span{
    border: 1px solid;
    border-radius: 5px;
    position: relative;
    display: inline-block;
}
.svg-holder{
    position: absolute;
    background: #292d78;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    display: none;
}
.svg-holder.active{
    display: block;
}
.svg-holder svg {
    fill: #fff;
    width: 100%;
    animation: 2s loading infinite;
    height: 100%;
}
.error-box.active{
    opacity: 1;
    grid-template-rows: 1fr;
}
.error-box .grid{
    overflow: hidden;
}
.error-box{
    transition: 500ms ease-in-out;
    margin-top: 20px;
    padding: 10px;
    border: 1px solid #ff9d9d;
    border-radius: 5px;
    background: #ffd0cdb3;
    opacity: 0;
    grid-template-rows: 0fr;
}
.error-box.reset-notice{
    background: #dfdfdfb3;
    border: 1px solid #c8c8c8;
}
.error-box.reset-notice svg path{
    fill: #080808;
}
.error-box .icon-holder svg{
    height: 64px;
}
.error-box .icon-holder svg path{
    fill: #e94a40;
}
@media (max-width: 768px){
    .profile-menu{
        padding: 25px 0px;
    }
    .grid{
        grid-template-columns: 1fr;
    }
}
@keyframes loading {
    0%{
      transform: rotate(0deg);
    }
    50%{
        transform: rotate(180deg);
    }
    100%{
        transform: rotate(360deg);
    }
  }