html,
body,
#content {
    margin: 0;
    padding: 0;
}
body {
    background-color: #f5f5f5;
}
#content {
    width: 100%;
}

hr.large {
    border: none;
    height: 7px;
    background: #eee;
    margin: 10px;
}
hr.medium {
    border: none;
    height: 1px;
    background: #ebebeb;
    margin: 10px;
}

.round-border-three {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}
.round-border-ten {
    /* rounded border would break the skeleton grid so we're using a box-shadow here */
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    -webkit-box-shadow: 0px 0px 0px 10px #eee;
    box-shadow: 0px 0px 0px 10px #eee;
}

.login-container {
    background-color: #fff;
    margin-top: 130px;
}
.message-wrapper {
    margin: 0;
    min-height: 70px;
    height: auto;
    padding: 0 10px;
}
#popup-blocker,
#login-successful {
    display: none;
}
.login-wrapper {
    margin-bottom: 80px;
}
.form-wrapper {
    padding: 0 20px;
}
.login-destination {
    padding-top: 10px;
    margin: 0 20px;
}
.icon-wrapper {
    text-align: center;
}
.login-icon {
    color: #7eb2c8;
    font-size: 200px;
    line-height: 200px;
}
.password-forgotten-icon {
    font-size: 1.125em;
    line-height: 1.125em;
}
#password-strenth-meter-container {
    margin-left: 6px;
}
.icon-unlock-alt {
    color: #EEEEEE;
}

label {
    display: block;
    margin-bottom: 3px;
}
input[type="text"],
input[type="password"],
select {
    display: inline-block;
    width: 100%;
    height: 30px;
    padding: 4px;
    border: 1px solid #bbb;
}

.button.button-login {
    font-size: 1.1em;
    font-weight: bold;
    padding: 10px 60px;
}
.language-wrapper {
    min-height: 35px;
    padding-bottom: 5px;
    text-align: center;
}
.language-link {
    display: inline-block;
    margin-right: 10px;
    padding: 0 10px;
    text-align: left;
    white-space: nowrap;
}
.password-forgotten-link,
.email-forgotten-link {
    margin-left: 10px;
}
.email-forgotten-link,
a.language-link:link,
a.language-link:visited {
    color: #aaa;
    text-decoration: none;
}
a.password-forgotten-link:link,
a.password-forgotten-link:visited {
    color: #999;
    text-decoration: none;
}
a.language-link:active,
a.language-link:hover,
a.password-forgotten-link:active,
a.password-forgotten-link:hover {
    color: #000;
    text-decoration: underline;
}

/* #Tablet (Portrait)
================================================== */

    /* Note: Design for a width of 768px */

    @media only screen and (min-width: 768px) and (max-width: 959px) {
        .login-container {
            margin-top: 40px;
        }
        .login-icon {
            font-size: 170px;
            line-height: 170px;
        }
        .login-wrapper {
            margin-top: 40px;
            margin-bottom: 50px;
        }
    }

/*  #Mobile (Portrait)
================================================== */

    /* Note: Design for a width of 320px */

    @media only screen and (max-width: 767px) {
        .login-container {
            margin-top: 20px;
        }
        .login-icon {
            font-size: 130px;
            line-height: 130px;
        }
        .login-wrapper {
            margin-top: 20px;
            margin-bottom: 30px;
        }
    }
