@charset "UTF-8";
/* CSS Document */
* {
    margin: 0;
}

body {
    background-color: #0662d6;
    font-family: 'Poppins', sans-serif, Arial, Helvetica;
    font-size: 14px;
    color: #000000;
    margin: 0px;
    padding: 0px;
    text-align: center;
}

img {
    border: 0px;
}

.floatleft {
    float: left;
}

.floatright {
    float: right;
}

.clear {
    clear: both;
}

a {
    text-decoration: none;
}

input:-webkit-autofill::first-line,
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
    font-family: 'Poppins', sans-serif, Arial, Helvetica !important;
    font-size: 16px;
}

/* Elements */
#inleed-logo img {
    margin-top: 10%;
    width: 210px;
}

#login-form {
    background-color: #FFFFFF;
    margin: 0 auto;
    width: calc(90% - 80px);
    width: -moz-calc(90% - 80px);
    width: -webkit-calc(90% - 80px);
    width: -o-calc(90% - 80px);
    max-width: 556px;
    margin-top: 40px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    padding: 30px 40px 40px 40px;
    text-align: left;
}

input, button {
    font-family: 'Poppins', sans-serif, Arial, Helvetica;
    font-size: 16px;
    margin-top: 15px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

input[type=text], input[type=password], input[type=email] {
    width: 100%;
    border: 1px solid #000000;
    padding: 10px;
    background-color: #FFFFFF;
}

input[type=submit], button {
    border: 0;
    text-align: center;
    padding: 10px 40px;
    cursor: pointer;
}

input[type=submit] {
    background-color: #0760D6;
    color: #FFF;
}

button {
    background-color: #E8ECF7;
    color: #596778;
}

#ForgotPasswordSubmit {
    float: left;
    width: 30%;
}

#ForgotPasswordSubmit input {
    width: 100%;
    padding: 10px 0px;
}

#ForgotPasswordMessage {
    font-size: 13px;
    margin-top: 20px;
    float: right;
    width: 65%;
    margin-top: 15px;
    color: #029800;
}

#NewPasswordMessage {
    font-size: 14px;
}

#languages {
    color: #FFFFFF;
    position: relative;
    font-size: 15px;
    width: 400px;
    margin: 20px auto 0;
}

.language-item {
    background: white;
    color: black;
    border-radius: 10px;
    padding: 5px 10px 5px 10px;
    opacity: 0.5;
    margin-left: 17px;
}

.language-item.active {
    opacity: 1;
}

#languages img {
    height: 20px;
    padding-right: 5px;
}

#languages a {
    color: black;
}


@media only screen and (max-width: 500px) {
    #login-form {
        width: 100%;
    }
}