/* Creates a container for the contact form and gives it a width margin, padding, border and background color */
.container {
    color: #1e1e1e;
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 5px;
    background-color: #6e6a6f;

}
/* Sets a margin between each form   */
.form-group {
    margin-bottom: 20px;
}
/* Sets labels of contact form to be whole row (block) and give font bold */
label {
    display: block;
    font-weight: bold;
}

input[type='text'], textarea {
    width: 100%; /* Sets width of text areas to 100% of container */
    padding: 10px;
    border: 5px solid #ccc;
    border-radius: 20px;
    box-sizing: border-box;

}

input[type="submit"] {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 4px;
    background-color: #24aa26;
    color: white;
    font-weight: bold;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #45a049;
}

.error {
    color: red;
    font-size: 0.8em;
}

#email,
#phoneNumber {
    width: 100%;
    padding: 10px;
    border: 5px solid #ccc;
    border-radius: 20px;
    box-sizing: border-box;


}