.contact-form {
    height: 100%;
    width: 55%;
    
    display: flex; 
    justify-content: center;
    align-items: center;
    
    z-index: 0;
}

.contact-form-text {
    width: 100%;
    color: white;
    font-size: 25;
    font-family: sans-serif;
    background-color: rgb(0, 0, 0);
    padding: 20px;
    border-radius: 10px;
    opacity: 0.9;
    
    z-index: 0;
}

.form-input {
    min-width: 25%;
}

#form-email 
#form-name 
#form-captcha {
    min-width: 50px;
    width: 50px;
    max-width: 50px;
}

#form-message {
    resize: vertical;
    max-width: 100%;
}

#form-submit {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.form-submitted {
    width: 25%;
    color: white;
    font-size: 25;
    font-family: sans-serif;
    background-color: rgb(0, 0, 0);
    padding: 20px;
    border-radius: 10px;
    opacity: 0.9;
    
    z-index: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}