/* 
This document contains the base classes for all 
TE Welfare & Education Webbapplications

Do NOT leave spaces between the property value and the units! 
If you use "margin-left: 20 px" instead of "margin-left: 20px" 
it will only work properly in IE6 but it will not work in Mozilla or Netscape.
*/

/* -------------------------------------------------------------------------------------------------------*/
/* Base classes */

body {
    background-color: #071D49;
}

html,
body,
form {
    border: none;
    font-family: helvetica, arial, verdana, sans-serif;
    color: black;
    height: 100%;
}

body,
html,
form,
h1 {
    margin: 0;
    padding: 0;
}

input.Text {
    width: 150px;
}

input[type=text], input[type=password], select {
    color: #282C2F;
    border-radius: 6px;
    box-shadow: none;
    padding: 12px 12px 12px 12px;
    box-sizing: border-box;
    width: 380px;
    border-width: 0;
    outline: 0;
}

@media (max-width: 380px) {
    input[type=text], input[type=password], select {
        width: 100%;
    }
}

.main-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/*select {
    padding: 6px 12px 6px 12px;
}*/

div input[type=submit] {
    text-align: center;
}

input[type=submit] {
    background-color: #0A41AE;
    box-shadow: 0 3px 6px rgba(29, 64, 121, 0.16);
    border-width: 0;
    color: #FFF;
    border-radius: 6px;
    font-weight: bold;
    width: 240px;
    font-size: 0.875rem;
    height: 2.875rem;
}

input[type=submit]:hover {
    color: #FFF;
    background-color: #0C4FD4;
}

input[type=submit]:focus {
    color: #FFF;
    background-color: #0C4FD4;
}

select {
    background-color: #FFF;
}

img {
    border: 0;
}

.languages {
    overflow: hidden;
    height: 50px;
    list-style: none;
    padding: 0;
    position: absolute;
    right: 0;
    top: 6px;
    padding-right: 12px;
}

    .languages li {
        display: inline;
    }

.login-icon {
    z-index: 3;
    overflow: hidden;
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 130px;
    height: 160px;
    background-repeat: no-repeat;
    background-image: url(../images/login.png); /* Use PNG images with aplpha channel for latest browsers */
    *background-image: url(../images/login.gif); /* Target IE7 and below */
}

.field-container {
    margin-bottom: 1.5rem;
}

label {
    display: block;
}

.link {
    cursor: pointer;
}

.Heading {
    font-size: 1.75rem;
    font-weight: bold;
}

.ContentHeading {
    font-size: 0.75rem;
    font-weight: lighter;
    text-transform: uppercase;
    border-bottom: 1px solid #DDDDDE;
    padding-bottom: 0.375rem;
    letter-spacing: 0.3rem;
}

/*h1 span.Heading {
    font-size: large;
    font-family: Trebuchet MS,Verdana;
}*/

/*p.Heading,
span.Heading {
    color: #FFF;
    padding-top: 5px;
    margin: 5px;
    font-size: x-small;
}

li.Heading {
    color: Blue;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: x-small;
    list-style-image: url(images/spacer.gif);
}*/

.HeaderRow {
    margin-bottom: 24px;
    color: #FFF;
    display: inline-block;
}

.contentWrapper {
    max-width: 690px;
    padding-top: 160px;
}

@media (max-width: 690px) {
    .contentWrapper {
        max-width: 90vw;
        padding-top: 60px;
    }
}

.lc-method-list {
    list-style: none;
    -webkit-padding-start: 0;
    padding-left: 0;
    margin-bottom: 24px;
    margin-left: 0;
}

.lc-method-list li {
    width: 210px;
    background-color: #0A41AE;
    border: 0;
    border-radius: 6px;
    text-align: center;
    margin-bottom: 1.25rem;
    display: inline-block;
}

@media (min-width: 690px) {
    .lc-method-list li {
        margin-right: 30px;
    }

    .lc-method-list li:nth-child(3) {
        margin-right: 0;
    }
}

.lc-method-list li:hover {
    background-color: #0C4FD4;
    cursor: pointer;
}

.lc-method-list li a {
    color: white;
    font-weight: bold;
    text-decoration: none;
    display: block;
    font-size: 0.875rem;
    line-height: 2.875rem;
}

@media (max-width: 690px) {
    .lc-method-list li {
        display: block;
        margin-right: 0;
    }
}


.lc-actor_header {
    color: #FFF;
}

.languages li:not(:last-child) {
    margin-right: 12px;
}

.languages li a img {
    border: 1px solid #fff;
}

.languages li a img:hover {
    border-color: #CBCCCD;
}

label[for] {
    color: #FFF;
    font-weight: 600;
    margin-bottom: 9px;
    font-size: 0.875rem;
}

.lc-vertical-space-3 {
    margin-top: 16px;
}

.center {
    text-align: center;
}

.contextText {
    color: #FFF;
    font-size: 14px;
}