
/* Styling the Contact Us Form. */
.form-style-c1 
{
    border: 3px solid #FFA500;
    border-radius: 5%;
    background-color: #D3D3D3;
    padding: 3vw;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    height: auto;
}

input[type=text], 
input[type=email], 
textarea 
{
    width: 100%;
    padding: 12px;
    border: 1px solid #000000;
    border-radius: 6%;
    resize: vertical;
    box-sizing: border-box;
    margin: 0px;
    outline: 0px;
    font-size: 1.6rem;
}

label 
{
    padding: 5px;
    display: inline-block;
    font-weight: bold;
    color: #000000;
    font-size: 1.4rem;
}

input[type=submit],
input[type=reset]
{
    background-color: royalblue;
    color: #FFFFFF;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
    border: none;
    border-radius: 6%;
    cursor: pointer;
}

input[type=submit]:hover,
input[type=reset]:hover 
{
    background-color: #FFA500;
    color: #000000;
    box-shadow: none;
}

.col-25 
{
    float: left;
    width: 25%;
    margin-top: 6px;
}

.col-75 
{
    float: left;
    width: 75%;
    margin-top: 6px;
}

.row::after 
{
    content: "";
    display: table;
    clear: both;
}

.required
{
    color: #FF0000;
    font-weight: bold;
    font-size: 2.0rem;
}

.error 
{
    color: #FF0000;
    background-color: 	#D3D3D3;
    font-weight: bold;
    font-style: italic;
    font-size: 1.4rem;
}

/* Responsive Styling. */
@media screen and (max-width: 600px) 
{
    .form-style-c1 
    {
        border: 2px solid #FFA500;
        width: 100%;
    }

    .col-25, 
    .col-75, 
    input[type=submit] 
    {
        width: 100%;
        margin-top: 0;
    }
} 