form {
    margin-top: 4rem;
    max-width: 60%;
    gap: 2rem;
}

.submit-button {
    background-color: #4CAF50;
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
    text-align: center;
}

.input-message{
    min-height: 10rem;
}

input , textarea{
    font-size: 1.2rem;
    padding: 1.5rem;
    background-color: #ffffff21;
    border:none;
    border-radius: 0.5rem;
    color: white;
}

input::placeholder{
    color: rgb(116, 116, 116);
}
.submit-button:hover {
    background-color: #45a049;
}
