body {
    background-color: rgb(29, 235, 248);
    font-family: Arial, sans-serif;
}

label {
    display: block;
    margin-bottom: 8px;
}


input[type="text"]{
    position: absolute;
    top: 100px;
    background-color: rgb(6, 177, 188);
    width: 300px;
    height: 20px;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid rgb(41, 118, 142);
    border-radius: 4px;
}
input[type="email"] {
    position: absolute;
    top: 100px;
    left: 350px;
    background-color: rgb(6, 177, 188);
    width: 300px;
    height: 20px;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid rgb(41, 118, 142);
    border-radius: 4px;
}

textarea {
    position: absolute;
    top: 200px;
    background-color: rgb(6, 177, 188);
    width: 90%;
    height: 400px;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid rgb(41, 118, 142);
    border-radius: 4px;
}


input[type="submit"] {
    position: absolute;
    top: 650px;
    background-color: #007BFF;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 10px 20px;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #0056b3;
}

#back_button {
    position: absolute;
    top: 4px;
    left: 4px;
    background-color: green;
    padding: 15px;
    border: 1px solid green;
    border-radius: 4px;
    text-decoration:none;
    color: white;
}

#name_label {
    position: absolute;
    top: 80px;
}

#email_label {
    position: absolute;
    top: 80px;
    left: 350px;
}

#message_label {
    position: absolute;
    top: 180px;
}

#message_send {
    position: absolute;
    top: 650px;
    left: 100px;
}