form {
    background-color: #ecba74;
    border-radius: 5px;
    margin: 20px auto;
    padding: 35px;
    width: 90%;
}

input {
    border: 1px solid #555;
    border-radius: 4px;
    display: inline-block;
    margin: 8px 0;
    padding: 12px 20px;
    width: 100%;
}

textarea {
    border: 1px solid #ccc;
    border-radius: 4px;
    height: 150px;
    width: 100%;
}

button {
    background-color: #BFCEA0;
    border: none;
    border-radius: 4px;
    color: #111;
    margin: 8px 0;
    padding: 14px 20px;
    width: 100%;
}

button:focus,
button:hover {
    filter: brightness(125%);
}

#ValidCSS {
    border: 0;
    width: 88px;
    height: 31px
}



/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    form {
        width: 70%;
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    form {
        width: 50%;
    }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    form {
        width: 40%;
    }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    form {
        width: 30%;
    }
}


