/* Mobile First View */
main {
    background-color: var(--Mantle);
    height: 100%;
}

form {
    background-color: var(--Surface0);
    color: black;
    border-radius: 5px;
    padding: 35px;
    width: 100%;
    display: flex;
    flex-flow: column nowrap;
}

input {
    display: inline-block;
    background-color: var(--Crust);
    color: black;
    border: 1px solid var(--Crust);
    border-radius: 4px;
    margin: 8px 0;
    padding: 12px 20px;
    width: 100%;
}

textarea {
    background-color: var(--Crust);
    color: black;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin: 8px 0;
    height: 150px;
    width: 100%;
}

button {
    background-color: var(--Blue);
    color: white;
    border: none;
    border-radius: 4px;
    margin: 8px 0;
    padding: 14px 20px;
    width: 100%;
    cursor: pointer;
}

button:focus,
button:hover {
    background-color: var(--Lavender);
}

/* Medium Devices (landscape tablets, 960px and up) */
@media only screen and (min-width: 960px) {
    main {
        padding: 20px 0;
    }

    form {
        flex: 0 0 auto;
        margin: 0 auto;
        min-width: 670px;
        max-width: 751px;
    }
}

/* Large Devices (laptops/desktops, 1080w and up) */
@media only screen and (min-width: 1080px) {
    main {
        padding: 20px 0;
    }

    form {
        flex: 0 0 auto;
        margin: 0 auto;
        min-width: 752px;
        max-width: 800px;
    }
}
