﻿* {
    box-sizing: border-box;
}

.body {
    background: url("../images/Background.png");
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
    border-bottom: 10px solid #0054a5;
    min-height: 100vh;
}

.container-fluid {
    padding-left: inherit;
    padding-right: inherit;
}

input, select {
    border: 1px solid #a5a2a2;
    border-radius: 6px;
    width: 220px;
    margin-top: 5px;
    padding: 2px 10px;
    outline: none;
}

header {
    border-top: 3px solid #0054a5;
    background-color: rgb(227, 227, 227);
    box-shadow: 0px 0px 7px 0px rgba(0, 0, 1, 0.47);
}

.logoArea {
    background-size: contain;
    background-position: top right;
    background-repeat: no-repeat;
    padding: 20px 0 20px 20px
}

.ctdLogo {
    max-width: 300px;
}

.formArea {
    font-size: 12pt;
    padding-top: 10px;
}

.warning {
    background: #e3e3e3;
    border: 1px solid #b7b4b4;
    border-radius: 5px;
    padding: 10px;
    background-image: url(../images/WebScreen.gif);
    background-size: contain;
    background-position: left center;
    background-repeat: no-repeat;
    background-origin: content-box;
    font-size: 17px;
}

input {
    border: 1px solid #a5a2a2;
    border-radius: 6px;
    width: 220px;
    margin-top: 5px;
    padding: 2px 10px;
    outline: none;
}

.formAreaBottom input {
    width: 25px;
    height: 25px;
    display: inline-flex;
    -webkit-appearance: checkbox;
}

    .formAreaBottom input + strong {
        vertical-align: super;
        padding-left: 10px;
    }

input[type=submit] {
    background-color: #5da24d;
    border: none;
    outline: none;
    color: #FFF;
    box-shadow: 0 5px 5px #38662e;
    font-weight: 700;
    padding: 8px;
    border-radius: 7px;
    margin-bottom: 10px;
}

@media (max-width: 1192px) {
    .warning {
        background-image: none;
    }
}

@media (max-width: 992px) {
    .warning {
        font-size: 15px;
    }

    .logoArea, .warning {
        background-image: none;
    }
}