form {
    /* Center the form on the page */
    margin: 0 auto;
    width: 100%;
    /* Form outline */
    padding: 1em;
    /* border: 1px solid #ccc; */
    border-radius: 1em;
    background: transparent;
    margin: auto;
    text-align: center;

}

input,
textarea {
    /* To make sure that all text fields have the same font settings
     By default, textareas have a monospace font */
    font: 1em sans-serif;
    /* Uniform text field size */
    width: 40%;
    box-sizing: border-box;
    /* Match form field borders */
    border: 1px solid grey;
    /* spacing */
}

@media screen and (max-width:600px) {
input,
    textarea {
        /* To make sure that all text fields have the same font settings
     By default, textareas have a monospace font */
        font: 1em sans-serif;
        /* Uniform text field size */
        width: 100%;
        box-sizing: border-box;
        /* Match form field borders */
        border: 1px solid grey;
        /* spacing */
    }    
}

input:focus,
textarea:focus {
    /* Additional highlight for focused elements */
    border-color: transparent;
}

textarea {
    /* Align multiline text fields with their labels */
    vertical-align: top;
    /* Provide space to type some text */
    height: 12em;
}

.submit {

background-color: #4CAF50;
    /* Green */
    border: none;
    color: white;
    padding: 16px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    transition-duration: 0.4s;
    cursor: pointer;

}


.submit {
background-color: white;
    color: black;
    border: 2px solid blue;
    width: 40%;
    margin-left: 20%;
}

.submit:hover {
    box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
    background-color: blue;
    color: white;
}

/* new form styles  */
div.form-floating.mb-3 {
margin-left: 12%;
margin-right: 12%; 
}

.select {
    padding-left: 12%;
    padding-right: 12%;

}

textarea#form-control {
    background-color: white;
width: 100em;
max-width: 100%;
}

