
body, html {
    margin: 0;
    height: 100%;
    padding: 0;
}

* {
    color: #414141;
    font-family: sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    letter-spacing: 0;
    text-decoration: none;
}

#top-wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* ------ */
/* Header */
/* ------ */
img.lv-logo {
    height: 30px
}

.lv-banner {
    height: 80px;
    background-color: #6b7175;
}

.img-wrapper {
    display: flex;
    align-items: center;
}

#kc-header-wrapper {
    display: none;
}

#kc-form {

}

#kc-header {
    border-bottom: 1px solid #D9D9D9;
    padding-left: 24px;
    padding-right: 24px;
    min-height: 64px;
    display: flex;
    align-items: center;
}

header * {
    font-weight: 300;
    text-align: center;
}

h2#kc-page-title-small {
    font-size: 20px;
    line-height: 32px;
    letter-spacing: .2px
}

h1#kc-page-title {
    font-size: 26px;
    line-height: 60px;
    letter-spacing: .3px;
}

/* -------------- */
/* Content & Form */
/* -------------- */
.page-container {
    overflow: auto;
}

#kc-content {
    margin: 10px 50px 50px auto;
    width: 80%;

}

form {
    height: 230px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

/*
input[type="text"], input[type="password"], select {
    font-weight: 300;
    width: 100%;
    height: 40px;
    border: 1px solid #028860;
    border-radius: 4px;
    padding: 0px 5px 0px 5px;
    margin: 1px;
    box-sizing: border-box;
    background-color: white;
}
*/

form a {
    color: #028860;
    letter-spacing: 1px;
}

form a:before {

    content: "\E903";
    padding-right: 5px;
    line-height: inherit;
}

input[type="submit"] {
    /*height: 48px;
    width: 100%;
    opacity: 1.0;
    border-radius: 2px;
    color: #ffffff;
    background-color: #028860;
*/
    padding: 0;
/*    text-transform: uppercase; */
    border: 1px solid #028860;
    border-radius: 2px;
    background-color: #028860;
    color: #ffffff !important;
    display: inline-block;
    padding: 10px 13px 10px 10px;
    font-weight: normal;
    white-space: nowrap;
}

textarea, input input[type], .uneditable-input, select {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.428571429;
    color: #555;
    vertical-align: middle;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s
}


textarea:focus, input:focus, input[type]:focus, .uneditable-input:focus, select:focus {
    /*border-color: #028860;*/
    /*box-shadow: 0 0 0 2px #028860;*/
    /*outline: none*/
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6)
}

input[type="submit"]:disabled {
    opacity: 0.4;
}

input[type="submit"]:focus {
    background-color: #856999;
}

input[type="submit"]:hover {
    color: #ffffff;
    border: 1px solid #05aa79;
    border-radius: 2px;
    background-color: #05aa79;
}

#kc-locale {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center
}

/* -------------- */
/* Error Messages */
/* -------------- */
#kc-info-wrapper, .alert {
    color: #414141;
    display: flex;
    align-items: flex-start;
    position: relative;
    background-color: #fff;
    border: 1px solid #dc3149;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(65, 65, 65, .5);
    padding: 23px;
    margin: 12px 0;
    font-size: 16px;
    line-height: 24px;
}

#kc-info-wrapper:before, .alert:before {
    content: "";

    color: #dc3149;
    margin-right: 10px;
    font-size: 24px;
}

#ma-login-text {
    color: #000000;
}

/* ------ */
/* Footer */
/* ------ */
.footer {
    position: sticky;
    bottom: 0;
    border-top: 1px solid #D9D9D9;
    color: white;
    background-color: #312c2a;
    padding: 0px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: auto;
}

.bottom {

    height: 60px;
}

nav * {
    color: #767676;
    letter-spacing: 1px;
}

nav a {
    margin-right: 32px;
}


.emphasized {
    font-weight: 600;
}


#close-button {
    margin-left: auto;
    font-size: 22px;
}