form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}
input, textarea {
    width: 90%;
    padding: 10px;
    border: 2px solid #d8c5a5;
    border-radius: 5px;
    font-size: 16px;
}

textarea{
    margin-bottom: 50px;
}
.send-button {
    background: #c4ad80;
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 16px;
    width: 94%;
    bottom: 20px;
}
.send-button:hover {
    background: #a99370;
}