body {
    font-family: 'Open Sans', 'Arial', 'sans-serif';
}
@media (min-width: 992px) {
    .container, .container-lg, .container-md, .container-sm {
        max-width: 750px;
    }
}

a {
    color: #184671;
}
a:focus, a:hover, a:active {
    color: #4775a1
}

h1 {
    color: #184671;
    font-size: 42px;
    letter-spacing: 0;
    line-height: 57px;
}

h2 {
    color: #999999;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 27px;
}

h3 {
    color: #184671;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 27px;
}

#loading, #message-success, #message-error {
display: none;
}
@keyframes success-animation {
    0% {
        background-color: #DDFFDD;
    }
    100.0% {
        background-color: transparent;
    }
}
#message-success {
    margin: -15px; padding: 15px;
    animation-name: success-animation;
    animation-duration: 3s;
    border-radius: 10px
}
#message-success.show {
    display: block
}
@keyframes error-animation {
    0% {
        background-color: #FFDDDD;
    }
    100.0% {
        background-color: transparent;
    }
}
#message-error {
    margin: -15px; padding: 15px;
    animation-name: error-animation;
    animation-duration: 3s;
    border-radius: 10px
}
.error-description { display: none; }
.subtitle-container p {
    color: #000000;
    font-size: 16px;
    letter-spacing: 0;
    line-height: 24px;
}

.form-label {
    color: #000000;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 22px;
}

.select2-container--default .select2-selection--single,
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 38px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 35px;
}

.btn.btn-primary[type=submit] {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;
    line-height: 24px;
    text-align: center;
    background-color: #184671;
    border-color: #184671;
    padding: 0.5rem 2rem;
    border-radius: 0;
    transition: background-color .15s ease-in-out,border-color .15s ease-in-out;
}

.btn.btn-primary[type=submit]:hover,
.btn.btn-primary[type=submit]:focus,
.btn.btn-primary[type=submit]:active {
    background-color: #4775a1;
    border-color: #4775a1;
}

.alert {
    display: none;
}