* {
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

html,
body {
    font-family: Helvetica, Arial, sans-serif;
    background-color: #eeeef6;
    color: #012345;
    margin: unset;
    padding: unset;
    font-size: 12px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    height: 100%;
    width: 100%;
    overflow: hidden;
    scroll-behavior: smooth;
}

button,
input[type=button] {
    border: none;
}

button:not(:disabled):hover,
button:not(:disabled):hover > *,
input[type=button]:not(:disabled):hover,
input[type=button]:not(:disabled):hover > * {
    cursor: pointer;
}

button {
    min-width: 100px;
    width: fit-content;
    height: 40px;
    text-transform: uppercase;
    border-radius: 8px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    margin: 0 auto;
}

button.active {
    color: #fff;
    fill: #fff;
    background: #162c99;
}

button.passive {
    fill: #162c99;
    color: #162c99;
    background: none;
    border: 1px solid #162c99;
}

button.active:hover {
    background: #162c99cc;
}

button.passive:hover {
    background: #162c9922;
}

.button-link {
    text-decoration: none;
}

.form {
    display: flex;
    height: calc(100% - 60px - 30px);
    overflow-y: auto;
    padding-top: 32px;
    padding-bottom: 20px;
}

.form.centered {
    display: block;
}

.header {
    color: #333;
    width: 100%;
    text-align: center;
    font-size: 24pt;
    font-weight: bold;
    margin: 24px 0;
}

.instruction-content-container {
    min-height: 190px;
    flex: unset;
}

.instruction-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.content-label-container {
    width: auto;
    margin-top: 30px;
    margin-left: 30px;
    font-size: 18px;
    line-height: 18px;
    color: #3f434c;
}

.label-back-content-container {
    width: 90%;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.label-info-content {
    font-size: 16px;
    color: #fff;
    text-align: center;
    line-height: 20px;
}

.label-back-content {
    font-size: 16px;
    color: #c94191;
    line-height: 20px;
    border-style: none;
    background: none;
    /* button text wrap: */
    white-space: normal;
}

.label-back-content:hover {
    cursor: pointer;
}

.centered-content-wrapper {
    width: 90%;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px #00000022;
    padding: 32px 16px;
    height: fit-content;
    margin: 0 auto;
}

@media(min-width: 768px) {
    .centered-content-wrapper {
        width: 400px;
    }
}

.feedback {
    margin: 4px 0;
    min-height: 50px;
}

.reset-password-content {
    min-height: 206px;
}

.page-expired-content {
    min-height: 50px;
}

.label-login-content-container {
    width: 100%;
    line-height: 54px;
    text-align: center;
    font-family: Arial;
    margin-top: 40px;
    font-size: 32px;
    color: #fff;
}

.label-login-title {
    width: 100%;
    text-align: center;
    display: inline-table;
    font-family: Arial;
}

.input-label {
    display: block;
    margin: 0 auto;
    text-align: left;
    margin-bottom: 4px;
}

.input-container-register {
    float: left;
    width: 45%;
    text-align: center;
}

input {
    width: 100%;
    height: 30px;
    box-sizing: border-box;
    font-size: 1.2em;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    background-color: #fff;
    border-radius: 8px;
    padding-left: 10px;
    border: 1px solid #064A6C;
}

input:not(:placeholder-shown):not(:read-only) + .input-label,
input:focus:not(:read-only) + .input-label {
    top: 0px;
    left: 0px;
}

.input-container {
    position: relative;
    padding-top: 15px;
}

.input-container > .input-label {
    color: #064A6C;
    position: absolute;
    font-size: 1em;
    left: 10px;
    background: #fff;
    top: 7px;
    padding: 0px 5px;
    transition: .1s all;
    height: 10px;
    line-height: 10px;
}

.input-register {
    width: 100%;
}

.input-line {
    size: 1px;
    color: #C8CDD2;
    margin: 4px auto;
}

.input-line-register {
    width: 100%
}

.button-container {
    width: 100%;
    text-align: center;
}

.button-container-register-wrapper {
    /*width: 397px;
    text-align: center;
    margin: 50px auto;*/
    display: flex;
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 35px;
    margin-bottom: 25px;

}

.small-button-container {
    text-align: center;
    width: 100%;
    margin-top: 5px;
    margin-bottom: 100px;
}

.button-group {
    width: 100%;
    margin-top: auto;
}

.button-group.reset-password {
    margin-top: 60px;
}

.update-password-content {
    min-height: 356px;
}

.update-password-input-container {
    margin-top: 46px;
    text-align: center;
}

.update-password-input {
    background-image: none !important;
    text-indent: 0;
}

.button-big {
    margin: 0 auto;
    font-weight: bold;
    font-size: 1.0em;
    line-height: 1.0em;
    letter-spacing: 1px;
    text-align: center;
    border: none;
    min-width: 130px;
    height: 50px;
    border-radius: 8px;
    box-shadow: 0 2px 4px #00000022;
    width: 100%;
}

.button-big:hover {
    cursor: pointer;
}

.text-button {
    width: 100%;
    border: none;
    background: unset;
    text-transform: uppercase;
}

.text-button:hover {
    cursor: pointer;
}

.text-button.forgot {
    color: white;
}

.text-button.register {
    color: #f3931b;
    margin-top: 40px;
}

.button-big.button-submit {
    background: linear-gradient(90deg, #3A63AB, #6494D0);
    color: #fff;
}

.button-big.button-abort {
    margin-top: 24px;
    background: #fff;
    color: #000;
}

.div-center {
    margin-left: auto;
    margin-right: auto;
}

.non-decorated-link {
    color: #000;
    text-decoration: none;
}

.instruction {
    text-align: center;
    width: 100%;
    margin: 20px auto;
    font-weight: bold;
}

.last-element {
    margin-bottom: 30px;
}

.container-alert {
    min-height: 40px;
    margin-top: 20px;
}

.alert-container-register {
    margin-bottom: 20px;
}

.alert {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    border: none;
    width: 90%px;
}

.alert-error {
    color: red;
}

.alert-success {
    color: green;
}

.alert-warning {
    color: orange;
}

.alert-info {
    color: black;
}

.resent-container {
    color: green;
    width: 90%;
    text-align: center;
    margin: 20px auto;
}

.header-container {
    padding: 0 16px;
    background-color: #fff;
    width: 100%;
    height: 60px;
    text-align: left;
    display: flex;
    align-items: center;
    box-shadow: 0px 2px 4px #00000011;
    display: flex;
    justify-content: space-between;
}

.header-container > .logo-container {
    height: 100%;
    display: flex;
    align-items: center;
    width: 180px;
}

.header-container > .logo-container > .client-logo {
    content:url("../img/logo-farbe.svg");
    height: 65%;
}

.app-footer-container {
    flex-direction: row;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 30px;
    background-color: #fff;
    box-shadow: 0 2px 8px #00000022;
}

/*****************
***TGO OVERRIDE***
******************/

body {
    background-color: #EEEEEE;
    color: #2A2A2A;
    font-family: Open Sans, Roboto;
}

button {
    border-radius: 25px;
    font-weight: 800;
}

button.active {
    background: #004F9F;
  }

button.active:hover {
    background: none;
    border: 1px solid #004F9F;
    color: #004F9F;
}

button.passive {
    fill: #004F9F;
    color: #004F9F;
    border: 1px solid #004F9F;
}

button.passive:hover {
    background: rgba(0, 79, 159, 1);
    color: #FFFFFF;
}

a.forgot-password-link {
    color: #004F9F;
}

a.forgot-password-link:hover {
    color: #519A28;
}

.input-container > .input-label {
    color: #004F9F;
}

input { 
    border-color: #004F9F;
}

.login-content > .right {
    align-self: self-start;
}