.error-box {
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);

    text-align: center;

    padding: 10px;
    padding-top: 10px;

    border-style: outset;
    border-color: black;
    border-radius: 5px;
    border-width: 2px;

    background-color:red;

    height: 200px;
    width: 300px;
    
    z-index: 100;
}

.error-box h2, h4 {
    margin-top: 10%;
    color: whitesmoke;
    margin-bottom: 20px;
}

.error-box div {
    margin: 0 auto;
    color: whitesmoke;  
    margin-bottom: 20px;
}

.error-box p {
    color: whitesmoke;
}

.error-form {
    position: absolute;
    display: block;
    width: 200px;
    margin: 0;
    margin-bottom: 10px;
    padding: 0;
    left: 50%;
    transform: translate(-50%, 0);
    bottom:10px;
}
.error-form input {
    position: relative;
    width: 180px;
    margin: 0 50px;
    padding: 0;
    width: 100px;
    /* transform: translate(-50%, 0); */
}
.error-display-none {
    display: none;
    margin: 10px;
    padding: 0;
    
}