form {
    width: 580px;
    box-sizing: border-box;
    margin-top: 12px;
    border-radius: 6px;
}

input {
    padding: 4px 0;
    padding-left: 4px;
    color: hsl(208, 12%, 78%);
    border-radius: 4px;
}

input:autofill {
  border-radius: 4px;
}

/* input::placeholder {
    color: --eerie-black;
}*/

textarea {
    width: 100%;
    margin-bottom: 20px;
    padding: 7px;
    box-sizing: border-box;
    font-size: 16px;
    min-height: 135px;
    max-height: 235px;
    max-width: 100%;
    min-width: 100%;
    border: none;
    border-radius: 5px;
}

button {
    color: hsl(208, 12%, 78%);
}

@media (max-width:615px) {
    form{
        width: 95%;
    }
}