html {
    box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: inherit;
}

html, body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4em;
    color: #231F20;
}

.formLb {
    font-weight: 700;
    font-size: 16px;
    line-height: 18px;
}

.formTxt {
    border: solid #231F20 3px;
    border-radius: 0;
    outline: none !important;
    line-height: 40px;
    height: 40px;
    padding: 0 13px;
    background: #fff;
}

.formTxt:hover,
.formTxt:active {
    border: solid #504c4c 3px;
    outline: solid #cecccc 3px !important;
}

select.formTxt:invalid {
    color: gray !important;
}

select.formTxt:focus {
    color: inherit !important;
}

.formTxt:read-only {
    border: solid #595959 3px;
}

.formTxt:disabled {
    opacity: 0.85;
}

.formGroup {
    margin-bottom: 20px;
}

.formGroup .formLb {
    display: block;
    margin-bottom: 5px;
}

.formGroup .formTxt {
    display: block;
    width: 100%;
}

.formBtn {
    border: none !important;
    border-radius: 0;
    outline: none !important;
    background: #231F20;
    color: #fff;
    line-height: 40px;
    height: 40px;
    padding: 0 13px;
    cursor: pointer;
}

.formBtn:hover {
    background-color: #504c4c;
}

.formBtn:active {
    background-color: #231F20;
    outline: solid #a8a2a2 3px !important;
}

.formCtrlBox:after {
    content: "";
    clear: both;
    display: table;
}

.formCtrlBox .formBtn {
    float: right;
    margin-left: 8px;
}

.inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.clearfix:after {
    content: "";
    clear: both;
    display: table;
}
