body {
    font-family: monospace;
    font-size: large;
}

#background_image {
    background-image: url("https://pfandl-aichdorf.at/wp-content/uploads/2017/09/header_image-1024x768.jpg");
    background-size: cover;
    width: 100%;
    height: 100%;
    z-index: 0;
    position: fixed;
    top: 0px;
    left: 0px;
}

#login_container {
    z-index: 50;
    position: absolute;
    top: 200px;
    left: 0px;
    right: 0px;
    margin: auto;
    width: 400px;

    padding-top: 5px;
    padding-left: 5%;
    padding-right: 5%;

    border-style: solid;
    border-radius: 20px;
    border-width: 1px;
    border-color: white;

    box-shadow: 5px 5px 10px black;
    background: rgb(0, 173, 255);
    background: linear-gradient(218deg, rgb(84, 203, 239) 36%, rgb(0, 90, 255) 100%);
}

.login_form_button {
    border-style: solid;
    border-color: white;
    border-width: 1px;
    border-radius: 10px;

    background: rgba(0, 0, 0, 0.2);
    color: white;

    padding: 10px;

    width: 50%;

    font-size: 20px;
}
.login_form_button:hover {
    border-style: solid;
    border-color: #fbff00;
    border-width: 1px;
    border-radius: 10px;

    padding: 10px;

    background: rgba(0, 0, 0, 0.5);
    color: #fbff00;

    width: 50%;

    font-size: 20px;
}

#login_form_header {
    width: 100%;
    height: 150px;
    
    margin-bottom: 25px;
}

#login_form_header_info {
    font-family: Arial;
    font-size: 20px;
    
    display: block;
    height: 100%;
}

#login_form_header_img {
    background-image: url("https://pfandl-aichdorf.at/logo/pfandl_logo_transparent.png");
    background-size: cover;
    
    display: block;
    
    height: 130px;
    width: 150px;
    margin-left: auto;
    margin-right: auto;
}

#login_form_footer {
    width: 100%;
    
    font-family: Arial;
    font-size: 10px;
    align-content: center;
}


.inp {
    position: relative;
    margin: auto;
    width: 100%;
    max-width: 280px;
    border-radius: 3px;
    overflow: hidden;
}
.inp .label {
    top: 20px;
    left: 12px;
    color: rgba(0, 0, 0, 0.5);
    font-weight: 500;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    pointer-events: none;
}
.inp .focus-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.05);
    z-index: -1;
}
.inp input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    border: 0;
    font-family: inherit;
    padding: 0px 12px 0 12px;
    height: 56px;
    font-weight: 400;
    background: rgba(0, 0, 0, 0.02);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.3);
    color: #000;
    -webkit-transition: all 0.15s ease;
}
.inp input:hover {
    background: rgba(0, 0, 0, 0.04);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.5);
}
.inp input:not(:placeholder-shown) + .label {
    color: rgba(0, 0, 0, 0.5);
}
.inp input:focus {
    background: rgba(0, 0, 0, 0.05);
    outline: none;
    box-shadow: inset 0 -2px 0 #fbff00;
}
.inp input:focus + .label {
    color: #fbff00;
    -webkit-transform: translate3d(0, -12px, 0) scale(0.75);
    transform: translate3d(0, -12px, 0) scale(0.75);
}


@media screen and (max-width: 500px) {
    #login_container {
        top: 20px;
        margin-right: 5%;
        margin-left: 5%;
        width: auto;
    }
    
    .inp input {
        width: 90%;
    }
}