body {
    font-family: Arial, sans-serif;
    font-size: 12px;
    background-color: #f0f0f0;
}

.form-container {
    text-align: center;
    margin-bottom: 20px;
    border: 1px solid #1C6EA4;
		box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
		border-radius: 10px; /* trying this out */
    background-color: #EEEEEE;
    margin-left: auto;
    /* Margins auto for horizontal centering */
    margin-right: auto;
    max-width: 350px;
    /* Maximum width */
    width: 100%;
    /* Flexible width */
    text-align: left;
    border-collapse: collapse;
    padding-left: 5px;
    padding-right: 5px;	
}

label,
input,
button {
    display: block;
    margin: 5px 0;
}

.message {
    margin-top: 20px;
}

.success {
    color: green;
}

.error {
    color: red;
}

#adminText {
    font-family: Arial, sans-serif;
    font-size: 12px;
    color: Green;
    font-weight: bold;
}

.myButton {
    box-shadow: 0px 10px 10px -7px #276873;
    background: linear-gradient(to bottom, #599bb3 5%, #408c99 100%);
    background-color: #599bb3;
    border-radius: 8px;
    display: inline-block;
    cursor: pointer;
    color: #ffffff;
    font-family: Arial;
    font-size: 15px;
    font-weight: bold;
    padding: 7px 12px;
    text-decoration: none;
    text-shadow: 0px 1px 0px #3d768a;
}

.myButton:hover {
    background: linear-gradient(to bottom, #408c99 5%, #599bb3 100%);
    background-color: #408c99;
}

.myButton:active {
    position: relative;
    top: 1px;

}

.custom-file-input {
    position: relative;
    overflow: hidden;
    display: inline-block;
}

input[type="file"] {
    position: absolute;
    font-size: 100px;
    opacity: 0;
    right: 0;
    top: 0;
}