.filler-banner {
    width: 100%;
    height: 60px;
    background-color: var(--main-color);
}
/*****BEGIN FORM STYLING*****/
/* 

    Styling for form templates.
    Modify as required. Initial styles are only to show outline of the form, and fonts, colors, etc. are free to be modified.

*/


/* 
    Color theme variables for form
*/

:root {
    --shadow-color: grey;
    --important-color: maroon;
    --input-outline: lightgray;
}


/* 
    Styling for wrapper on forms
    By default, includes a tight border to show dimensions of the form.
    Modify as required.
*/
/*
    Styling for form 
*/
.form-template-outside {
    padding: 20px;
    width: 100%;
    background-color: white;
    min-height: 60vh;
}

/* 
    Styling for subtitle/p above form
*/
.form-template-outside h2, p {
    text-align: center;
}

.form-template-outside p {
    margin-top: 10px;
}

.form-template-outside > .form-custom {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 20px;
}

.form-custom .form_field_wrapper {
    width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form_field_wrapper > .form_field_title {
    text-align: left;
    width: 100%;
    margin-bottom: 5px;
}

.form_field_wrapper > .form_field_content {
    width: 100%;
}

.form-custom input, textarea, select {
    width: 100%;
    padding: 10px;
    outline: none;
    border: solid 3px gray;
    transition: border 0.3s ease-in-out;
    font-family: 'Montserrat', sans-serif;
}

.form-custom input:focus, textarea:focus, select:focus {
    border: solid 3px var(--main-blue-lighter);
}

.form-custom textarea {
    resize: none;
    height: 200px;
}

.form-custom .btn-primary {
    background-color: var(--main-blue);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    font-size: 1.15rem;
    transition: background-color 0.3s ease-in-out;
}

.form-custom .btn-primary:hover {
    background-color: var(--main-blue-darker);
    cursor: pointer;
    color: white;
}

/*****END FORM STYLING*****/