﻿/* General Stuff*/

.center-align {
    text-align: center;
}

.clear {
    clear: both;
}

.hidden {
    display: none;
}

.txt-bold {
    font-weight: bold;
}

.left {
    float: left;
}

.right {
    float: right;
}

.redBG {
    color: white;
    background-color: #D81225;
}

.greenBG {
    color: #002871;
    background-color: #93FF93;
}

.margin-right {
    margin-right: 10px;
}

input[type="submit"] {
    padding: 5px 30px 5px 30px;
    background-color: #D81225;
    color: white;
    border: none;
    border-radius: 8px;
}

input[type="submit"]:hover {
    background-color: #C40007;
    cursor: pointer;
}

input[type="text"], input[type="password"], select {
    background-color: #FCF8E3;
    border-color: #CCCCCC;
    border-radius: 5px;
    border-style:solid;
    border-width: 1px;
    padding: 5px;
    font-size: 0.9em;
}

input[type="text"]:disabled {
    background-color: #EEEEEE;
    cursor: no-drop;
}

.infoBox {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    padding: 10px;
    margin-bottom: 15px;
    text-align: center;
}

.textBox {
    display: block;
    width: 100%;
    box-sizing: border-box;
}

.errorTextBox {
    background-color: #FFCACA!important;
}

.textBoxInfoText {
    font-weight: normal;
    font-size: 0.9em;
    color: #555555;
}

.headerLogo {
    width: 150px;
}