html, body {
    height: 100%;
}

body, #content {
    font-family: 'Open Sans', sans-serif;
    background: url('bg.jpg') no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    
}
h1, h2, h3, h4, h5, h6, label, button {
    font-family: 'Poppins', sans-serif;
}

.wrapper {
    min-height: 100vh;
    width: 100%;
    animation-name: backgroundFlash;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-direction: alternate;
}

.container {
    padding: 5% 0;
}

.main-panel {
    background-color: rgba(255,255,255,0.85);
    box-shadow: 0px 1px 2px 1px rgba(154, 154, 204, 0.22);
    border-radius: 20px;
}
@keyframes backgroundFlash {
    from {background-color: rgba(255,255,255,0.6);}
    to {background-color: rgba(255,255,255,0.25);}
}

.main-form {
    padding: 80px 50px 50px 50px;
    width: 100%;
    border-radius: 20px;
}

.main-form .form-group {
    max-width: 400px;
    margin: 0 auto 35px auto;
}

.copyright {
    margin-right: 15px;
    font-size: 10px;
    text-align: right;
}

.table-form {
    color: #000;
    padding: 30px 10px;
    min-height: 100%;
}
.table-form table {
    width: 100%;
}
.table-form table td {
    border: 1px solid #000;
    padding: 10px;
    background: #fff;
}
.w-85 {
    width:85px
}

.table-form table td.red-cell {
    background: #f58f8f;
    font-weight: bold;
}
.table-form table td.green-cell {
    background: #a5f58f;
    font-weight: bold;
}

.table-form table.settings-table {
    max-width: 600px;
    margin: 0 auto;
}
.table-form table.big-settings-table {
    max-width: 900px;
}
.table-form table.settings-table td {
    padding: 10px;
}
.table-form table.settings-table input.text-input {
    width: 100%;
}
.table-form table.settings-table textarea.text-input {
    width: 100%;
    height: 100px;
}
.table-form table.settings-table input.number-input {
    text-align: center;
    width: 70px;
}
.table-form table.settings-table .setting-label {
    text-align: right;
}

.checkpoint-form img {
    max-width: 100%;
}
