.element {
    border-top: 0;
    min-height: 100vh;
    padding: 2rem 1rem;
    gap: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background-color: #fffdf8;
    justify-content: center;
    width: 85%;
    margin-top: 4rem;
}

.label-input input[type="text"]{
    max-width: 100%;
}
.label-input {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.element img {
    max-width: 100%;
}

button {
    align-self: flex-end;
}

@media (max-width: 26.56rem) {
    .contact-container {
        text-align: center;
       margin-top: 2rem;

    }

    button {
        align-self: center;
    }
}
#customer-message {
  padding: 0.75rem;
  display: block;
  width: 100%;
  box-sizing: border-box;
  flex-direction: column;
  gap: 0.25rem;
  border: 0.2rem solid black;
  border-radius: 0.5rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  background-color: #fffef9;
}

#customer-message:hover {
  border-color: #ff6600;
}
