.message-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: forestgreen;
    border-radius: 5px;
    border-width: 2px;

    background-color:whitesmoke;

    height: 420px;
    width: 400px;
    
    z-index: 99;
}

.message-box h2, h4 {
    color: whitesmoke;
}

.message-box .container {
    margin: 0 auto;
    color: whitesmoke;  
    margin-bottom: 20px;

    max-width: 250px;
    text-align: left;
}

.message-box p {
    color: whitesmoke;
}
.message-bar {
    background-color: royalblue;
    color: whitesmoke;
    max-width: 400px;
    width: 400px;
    height: 60px;
    text-align: center;

    padding-top: 10px;
}

.message-bar p{
    color: whitesmoke;
    font-size: 18px;
}


.message-form {
    position: absolute;
    display: block;
    width: 200px;
    margin: 0;
    margin-bottom: 10px;
    padding: 0;
    left: 50%;
    transform: translate(-50%, 0);
    bottom:10px;
}
.message-form input {
    position: relative;
    width: 180px;
    margin: 0 50px;
    padding: 0;
    width: 100px;
    /* transform: translate(-50%, 0); */
}
.message-display-none {
    display: none;
    margin: 10px;
    padding: 0;
    
}



.custom-upload-label {
    border: 1px solid #ccc;
    display: inline-block;
    padding: 6px 12px;
    cursor: pointer;
    background-color: yellow;
    width: 120px;
    color: black;
    text-align: center;
}

.custom-upload-label:hover {
    border-color: black;
}
 
.form-group-upload input[type=file] {
    width: 0;
    height: 0;
    
    opacity: 0;
}