/*
 * General
 */
body {
    background-color: #000;
    font-family: 'Lato', Helvetica Neue, sans-serif;
}
h1 {padding: 0;margin: 0;}
.flex {
    display: flex;
}
.flex-center {
    align-items: center;
    justify-content: center;
}

/*
 * Forms
 */
input[type="text"] {
    font-size: 1.3em;
}
.label-row {
    text-align: left;
}
.btn-primary {
    background-color: #E6533B;
    border-color: #FF5D43;
}
.btn-primary:active {
    background-color: #702418 !important;
    border-color: #3D0F08 !important;
}
.btn-primary:hover, .btn-primary:focus {
    background-color: #FB3D44;
    border-color: #BC6258;
}
.btn-primary:disabled {
    background-color: #EAAA8E !important;
    border-color: #CA706E !important;
}
.input-hint {
    font-size: 1.1em;
    text-align: left;
    border-radius: 5px;
    margin-top: 5px;
    padding: 10px 18px;
    display: block;
    border-width: 1px;
    border-style: solid;
}
.input-hint.error {
    background-color: rgba(210, 33, 16, .7);
    border-color: rgba(255, 43, 22, 1);
}
.input-hint.warning {
    background-color: rgba(255, 158, 42, .7);
    border-color: rgba(255, 158, 42, 1);
}
.form-button-row {
    margin-top: 50px;
}

/*
 * Cover
 */
.cover {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
}
.cover.full-height {
    height: 100vh;
}
.cover.dark {
    background-color: #000;
    color: #fff;
}
.cover .tint {
    height: 100%;
    background-color: rgba(0, 0, 0, .4);
}
.cover .row {
    text-align: center;
    width: 100%;
    max-width: 1600px;
}
.cover-header {
    margin-bottom: 30px;
    text-shadow: 2px 2px #000000;
}
.cover-header .event-title {
    font-size: 2em;
}
.cover-header .event-title.elegant {
    font-family: 'Great Vibes', 'Snell Roundhand', cursive;
    color: #fff;
}
.cover-header .event-subtitle {
    color: silver;
    letter-spacing: 3px;
}
.cover-message {
    text-align: center;
    width: 100%;
    position: absolute;
    top: 75px;
    left: 0;
    opacity: 1;
    transition: opacity 1s ease-in-out;
    z-index: 10;
}
.cover-message .message {
    display: inline;
    font-size: 1.3em;
    /*text-shadow: 2px 2px rgba(0, 0, 0, .5);*/
    border-radius: 5px;
    padding: 30px 30px;
}
.cover-message.success .message {
    background-color: rgba(0, 139, 30, .7);
    border: 1px solid rgba(90, 221, 107, .8);
}
.cover-message .message .icon {
    font-size: 1.2em;
    margin-right: 10px;
}
.cover-footer {
    color: #B1B1B1;
    text-align: center;
    font-size: 0.9em;
    line-height: 3em;
    text-shadow: 2px 2px #000000;
    width: 100%;
    padding: 10px 0;
    position: absolute;
    bottom: 0;
    left: 0;
}
.cover-footer a {
    color: #E6533B; /* #77D152 */
}

/* form: lookup contract (request start) */
#form-contract-search {
    margin-top: 15px;
}
#form-contract-search .flex-column-input {
    flex: 5;
    margin-right: 15px;
}
#form-contract-search .flex-column-button {
    flex: 2;
    min-width: 75px;
}

/* form: create request */
#form-request .btn-lg {
    padding: 10px 40px;
}
#section-request .section-contents {
    margin-top: -45px;
}

/*
 * Animations
 */
.fade-out {opacity: 0;}
