body{
    display: flex;
    flex-direction: column;
            align-items: center;
}

#error-page-body{
    background: url('../images/wp3672119.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

.login-wrapper{
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.login-logo{
    width: 100%; 
    display:flex;
    justify-content: center;
}

.login-logo img{
    width:80vw;
}

form{
    width:70%;
    display:flex;
    flex-direction: column;
    align-items: center;
}

form .credentials{
    display:flex;
    flex-direction: column;
    margin-top:5vh;
    width: 100%;
}

form .credentials input{
    border-radius: 10px;
    height: 35px;
    border: 2px solid #787575;
    font-size: 1.3em;
    color: black;
    padding: 0px 10px;
    margin-top: 20px
}
#login-btn{
    background: #cf8d72;
    border: none;
    color: #ffffff;
    margin-top: 20px;
    border-radius: 10px;
    padding: 5px 10px;
    cursor: pointer;
}

#login-btn span{
    font-size:2.5em
}

.pgnotfound{
    position:absolute;
    width: 100%;
    display: flex;
    flex-direction: column;
    top: 45%;
    left: 50%;
    transform: translate(-50%,-45%);
    align-items: center;
}

.pgnotfound .main{
    width: 100%;
    font-size: 5vw;
    display: flex;
    justify-content: center;
    color:#000000;
}

.pgnotfound img{
    width: 50%;
}

.pgnotfound .link {
    padding:10px;
    display:flex;
    flex-direction: column;
    align-items: center;
}
        
.pgnotfound .link a{
    margin-top: 10px;
    color: #ffffff;
    font-size:2vw;
    border:1px solid #cf8d72;
    padding: 5px 10px 5px 10px;
    border-radius: 5px;
    transition: 0.2s;
    background:#cf8d72
}

.pgnotfound .link a:hover{
    color:#19828a ;
    background:transparent;
    border:1px solid #19828a;            
}

.pgnotfound .link a i{
    margin-right:10px;
}
.pgnotfound .link span{
    font-size: 2vw;
}