﻿.employee {
    width: 900px;
    margin: 25px 0;
    background: #ffffff;
    border: 1px solid #cccccc;
    padding: 30px;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: #333333;
}

.employee .header {
    border-bottom: 3px solid #333333;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.employee .header h1 {
    margin: 0;
    font-size: 26px;
}

.employee .header p {
    margin: 6px 0 0 0;
    color: #666666;
}

.employee .section {
    margin-top: 25px;
    border: 1px solid #cccccc;
}

.employee .section-title {
    background: #e9e9e9;
    border-bottom: 1px solid #cccccc;
    padding: 10px 12px;
    font-size: 16px;
    font-weight: bold;
}

.employee .section-content {
    padding: 15px;
}

.employee .form-row {
    width: 100%;
    clear: both;
    margin-bottom: 15px;
    overflow: hidden;
}

.employee .form-label {
    float: left;
    width: 250px;
    font-weight: bold;
    padding-top: 7px;
}

.employee .form-control {
    float: left;
    width: 580px;
}

.employee .form-control input[type=text],
.employee .form-control input[type=date],
.employee .form-control textarea,
.employee .form-control select {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    padding: 7px;
    border: 1px solid #999999;
    box-sizing: border-box;
}

.employee .text-box {
    width: 100%;
}

.employee .text-box-small {
    width: 200px;
}

.employee .text-box-medium {
    width: 350px;
}

.employee .text-area {
    width: 100%;
    height: 120px;
    resize: vertical;
}

.employee .required {
    color: #cc0000;
    font-weight: bold;
}

.employee .help-text {
    display: block;
    margin-top: 5px;
    color: #777777;
    font-size: 12px;
}

.employee .validation {
    color: #cc0000;
    margin-left: 8px;
    font-size: 12px;
}

.employee .date-control {
    width: 180px;
}

.employee .time-control {
    width: 130px;
}

.employee .calendar {
    background: #ffffff;
    border: 1px solid #999999;
    font-size: 12px;
    margin-top: 5px;
}

.employee .calendar td,
.employee .calendar th {
    padding: 4px;
}

.employee .declaration {
    background: #fafafa;
    border: 1px solid #dddddd;
    padding: 15px;
    line-height: 1.5;
}

.employee .signature-box {
    margin-top: 20px;
}

.employee .button-row {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #cccccc;
}

.employee .submit-button {
    background: #333333;
    color: #ffffff;
    border: none;
    padding: 12px 35px;
    font-size: 16px;
    cursor: pointer;
}

.employee .submit-button:hover {
    background: #555555;
}

.employee .validation-summary {
    border: 1px solid #cc0000;
    background: #fff0f0;
    color: #cc0000;
    padding: 12px;
    margin-bottom: 20px;
}

.employee .required-note {
    margin-bottom: 15px;
    font-size: 12px;
    color: #666666;
}

.employee .two-column {
    width: 100%;
    overflow: hidden;
}

.employee .column-left {
    float: left;
    width: 48%;
}

.employee .column-right {
    float: right;
    width: 48%;
}

.employee .column-left .form-label,
.employee .column-right .form-label {
    width: 150px;
}

.employee .column-left .form-control,
.employee .column-right .form-control {
    width: 250px;
}

.employee .clear {
    clear: both;
}

.employee .submission-success {
    margin-top: 25px;
    padding: 30px;
    border: 1px solid #cccccc;
    background: #f7f7f7;
    text-align: center;
}

.employee .submission-success h2 {
    margin: 0 0 15px 0;
    font-size: 24px;
}

.employee .submission-success p {
    margin: 10px 0;
}

.employee .submission-success strong {
    font-size: 18px;
}