.center_message {
    display: flex;
    justify-content: center;
    width: 100%;
}

#message_div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding-top: 60px;
}

#message_div ::placeholder {
    color: rgb(150, 150, 150);
    font-size: 14px;
}

#message_div h1 {
    font-family: 'Oswald', sans-serif;
}

#message_div a {
    text-decoration: none;
    font-weight: bold;
    color: black;
}

#description_message {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    max-width: 550px;
    text-align: justify;
}

#center_form {
    display: flex;
    justify-content: center;
}

#center_form>form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    max-width: 600px;
    margin: 30px 0px;
}

#center_form>form>* {
    background: rgba(255, 255, 255, 0.9);
    margin: 10px;
    padding: 18px;
    border: none;
    border: 1px solid lightgrey;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 300;
    outline: none;
    transition: all 0.3s;
    resize: none;
}

#center_form>form>*:focus {
    border: 1px solid lightgrey;
    background: rgba(0, 153, 51, 0.4);
    color: white;
    font-weight: 400;
    transition: all 0.3s;
}

#center_form>form>input:focus::placeholder {
    color: white;
    font-weight: 300;
}

#center_form>form>textarea:focus::placeholder {
    color: white;
    font-weight: 300;
}

#center_form>form>textarea {
    height: 20vh;
    max-height: 150px;
}

#success_email {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    color: white;
    font-weight: bold;
    background-color: rgba(0, 153, 51, 0.6);
}

#success_email p {
    margin: 18px 0px 21px 0px;
}