main {
    display: flex;
    justify-content: center;
    flex-direction: row;
}

input {
    background-color: white;
    width: 500px;
    height: 50px;
    border: 2px solid;
    border-color: #D0C0A9;
    border-radius: 50px;
    padding-left: 5px;
}

button {
    background-color: #64717a;
    padding: 5px;
    width: 100px;
    color: #fff8f0;
    border-radius: 50px;
    transition-duration: 200ms;
}

button:hover {
    background-color: #D0C0A9;
    color: #64717a;
    box-shadow: 2px black;
}

/* Size Responsive <600px, >600px, >768px, >992px, >1200px */

/* MOBILE VERSION */
@media only screen and (max-width: 600px) {

    input {
        width: 200px;
    }
}

@media (min-width: 601px) {

    input {
        width: 500px;
    }
}

@media (min-width: 768px) {
}

@media (min-width: 992px) {
}

@media (min-width: 1200px) {
}