/* ELEMENTS */

*:not(input) {
    box-sizing: border-box;
    cursor: default;

    -webkit-user-select: none;  /* Chrome all / Safari all */
    -moz-user-select: none;     /* Firefox all */
    -ms-user-select: none;      /* IE 10+ */
    user-select: none;          /* Likely future */
}

body {
	margin: 0;
    background-color: #bbb;

    /* Font from WebApp*/
    font-family: 'Segoe UI', 'Lucida Grande', 'Open Sans Regular';
    /* Fontsize from Specification*/
    font-size: 12px;
}

form > * {
    display: block;
    margin-bottom: 5px;
}

h1 {
    font-size: 24px;
    font-weight: normal;
    color: #3D4E5D;
    margin: 0 0 0 -1px;
}

input {
    outline: none;
    font-family: inherit;
    font-size: inherit;
}

input[type=text], input[type=password] {
	height: 32px;
    width: 100%;
    padding: 0px 6px;
    background-color: #f4f4f4;
    border: 1px solid #CCC;
}

input[type=text]:focus, input[type=password]:focus {
    border-color: #9EA6AE;
}

input[type=submit] {
    min-width: 80px;
    height: 35px;
    padding: 0 3px;
    
    margin-left: auto;
    
    background-color: #3D4E5D;
    border: 1px solid #3D4E5D;
    color: white;
}

input[type=submit]:hover {
    border-color: #26323F;
}

input[type=submit]:focus {
    border-color: #9EA6AE;
}

input[type=submit]:active {
    border-color: #35414E;
}

input[type=checkbox] {
    margin: 0;
}

label {
    height: 20px;
}


/* IDS */

#main-window {
    width: 643px;
    height: 410px;

	position: absolute;
	top: 50%;
	left: 50%;

	margin: -205px 0 0 -321px;
}

#main-container {
    width: 100%;
    height: 375px;
}

#bg-footer-left {
    width: 93px;
    background-color: #8CBE00;
}

#bg-footer-center {
    width: 270px;
    background-color: #50646E;
}

#bg-footer-right {
    width: 280px;
    background-color: #7896AA;
}

#login-content-container {
    padding: 40px 64px 50px 40px;
    float: left;
    width: 363px;
    height: 100%;
    background-color: #DFE2E7;
}

#form-content-container {
    margin-top: 20px;
    line-height: 16px;
}

#error-content {
    color: #ad0000;
    height: 50px;
}

#license-content-container {
    position: relative;
    float: left;
    width: 280px;
    height: 100%;
    background-color: white;
    
    padding: 40px 40px 10px 40px;
    
    color: #3D4E5D;

    line-height: 16px;
}

#license-content div {
    min-height: 16px;
    padding: 2px 0;
}

#logo {
    height: 32px;
}

#license-content {
    margin-top: 10px;
}

#license-content-footer {
    position: absolute;
    bottom: 10px;
}

/* CLASSES */

.license-title {
    font-weight: bold;
}

.bg-footer {
    float: left;
    height: 35px;
}

.checkbox input {
    position: absolute; opacity: 0; z-index: -1;
}

.checkbox > div {
    float: left;
    width: 16px;
    height: 16px;
    margin-right: 4px;
    border: 1px solid #CCC;
    
    background: transparent linear-gradient(180deg, #fff 0%, #ececec 100%) repeat scroll 0% 0%;
}

.checkbox > div > div {
    width: 100%;
    height: 100%;
}

.checkbox input:checked + div > div {
    background: url('../images/check.png') no-repeat center;
}

.checkbox input:focus + div {
    border-color: #9EA6AE !important;
}

.checkbox input:hover + div {
    border-color: #BBB;
    background: transparent linear-gradient(180deg, #fff 0%, #eaeaea 100%) repeat scroll 0% 0%;
}

::-ms-clear {
    display: none;
}

::-ms-reveal {
    display: none;
}