﻿#contactCard {
    padding: 35px 35px 0 35px;
}

#contactCardTitle {
    font-weight: bold;
    font-style: italic;
    text-align: center;
    margin-bottom: 40px;
}

#contactSubmit {
    font-weight: bold;
    margin: 0 auto;
    display: block;
    width: 125px;
}

    #contactSubmit:hover {
        background-color: white;
        border: 1px solid #F2CE00;
        color: black;
    }

#homeContactContainer {
    padding-bottom: 65px;
}

#formSuccessMessage {
    color: green;
}

#formFailureMessage {
    color: red;
    display: none;
}

.contact-body p {
    font-size: 1rem;
}

.card {
    max-width: 800px;
    padding: 35px;
    margin: 0 auto;
    background-color: #E5E5E5;
}

.form-submit-div {
    margin-top: 25px;
    padding-left: 50px !important;
}

.form-control {
    border-radius: 8px;
}

.form-control:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #404040;
}

.form-control:focus,
select.form-control:focus::-ms-value {
    color: #404040;
    background-color: #fff;
    border-color: #ffea73;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(242, 206, 0, 0.25);
}

.form-control::placeholder {
    color: #404040;
    opacity: 1;
}

@keyframes spinner-border {
    to {
        transform: rotate(360deg);
    }
}

.spinner-border {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: text-bottom;
    border: 0.25em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spinner-border .75s linear infinite;
}

.spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: 0.2em;
}

@keyframes spinner-grow {
    0% {
        transform: scale(0);
    }

    50% {
        opacity: 1;
        transform: none;
    }
}

.spinner-grow {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: text-bottom;
    background-color: currentColor;
    border-radius: 50%;
    opacity: 0;
    animation: spinner-grow .75s linear infinite;
}

.spinner-grow-sm {
    width: 1rem;
    height: 1rem;
}
