* {
    margin: 0;
    padding: 0;
    font-family: 'Saira Semi Condensed', sans-serif;
    font-weight: 300;
    font-size: 16px;
    color: #fff;
}


body {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

button {
    width: 100%;
    height: 40px;
    background-color: #155c8f;
    cursor: pointer;
    font-weight: 400;
    font-size: 16px;
    border: 1px solid #BFD1DE;
    margin-top: 10px;
}

button:hover {
    background-color: #8baabf;
    color: #363636;
    border: 0;
}

.btnLink {
    border: 0;
    background-color: transparent;
    text-align: right;
    font-size: 12px;
    text-decoration: underline;
    font-weight: 300;
    height: 18px;
    margin-top: 10px;
}

.btnLink:hover {
    background-color: transparent;
    color: #fff;
}


.background {
    position: fixed;
    background-image: url(../img/bg2.jpg);
    width: 110%;
    height: 110%;
    top: -5%;
    left: -5%;
    background-size: cover;
    opacity: 0.8;
    -webkit-filter: blur(4px);
    filter: blur(4px);
}

img_wrapper a {
    display: flex;
    justify-content: space-around;
    margin-bottom: 40px;
}

img {
    width: 70%;
    height: 70%;
}


.form_login {
    width: 400px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-direction: column;
    background-color: #155c8f;
    opacity: 0.85;
    padding: 15px 15px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.8);
}


label {
    margin-bottom: 3px;
    padding: 0;
}

input {
    background-color: #155c8f;
    margin-bottom: 15px;
    border: 1px solid #fff;
    padding: 5px;
}

input:hover {
    background-color: #8baabf;
    color: #363636;
    cursor: pointer;
}

.error_message_login {
    text-align: center;
    color: #363636;
    margin-bottom: 10px;
    font-weight: 400;
    font-size: 18px;
    background-color: #FD6565;
    padding: 5px;
}

#error_message {
    color: #363636;
}

.success_message_login {
    text-align: center;
    color: #363636;
    margin-bottom: 10px;
    font-weight: 400;
    font-size: 18px;
    background-color: #569A56;
    padding: 5px;
}

a {
    text-align: right;
    font-size: 12px;
    margin-top: 8px;
}

wrapper {
    display: flex;
    justify-content: space-between;
    margin-top: 80px;
    font-weight: 200;
}

wrapper p {
    font-size: 10px;
}

.paragraph {
    color: #363636;
}

/* ############ MOBILE ############ */
@media screen and (max-width: 480px) {
    form {
/*  #TODO - Mobile Form soll gesamten Bildschirm einnehmen */
        width: 100%;
        height: 100%;
    }
}
