body{
    display:flex;
    background-image: url('../img/background/login.png');
    background-repeat: no-repeat;
    background-position: center;
    flex-direction: column;
    height: 100vh;
    width: 100vw;
    margin:0;
    padding: 0;
    justify-content: center;
    align-items: center;
    background-color: #101010;
}

.container{
    display:flex;
    padding: 30px;
    flex-direction: column;
    align-items:center;
    justify-content: center;
    width: 40%;
    gap: 16px;
    min-height: 40px;
    /*box-shadow: 0px 0px 5px 1px #000;*/
}
#registrering form, #login form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
}
input[type=text], input[type=password]{
    outline:none;
    stroke:none;
    border: none;
    box-shadow: 0px 0px 5px 0px #ff9900;
    height: 40px;
    line-height: 40px;
    width: 350px;
    background-color: hsl(0, 0%, 0%, 0.8);
    border-radius: 20px;
    color: rgba(255, 69, 0, 0.8);
    text-align:center;
    font-size: 18px;
}
input[type=text]:active, input[type=text]:focus, input[type=password]:active, input[type=password]:focus{
    box-shadow: 0px 0px 10px #ff9900;
}
input[type=submit], button{
    height: 40px;
    width: 200px;
    background: linear-gradient(180deg, rgba(255,83,0,1) 0%, rgba(91,30,1,1) 100%);
    margin-top: 25px;
    outline: none;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight:bold;
    box-shadow: 0px 0px 5px 2px #000;
}
input[type=submit]:hover,button:hover{
    color: #ff9900;
    box-shadow: 0px 0px 5px 1px #ff9900;
    cursor: pointer;
}
.regBtn{
    background: linear-gradient(180deg, rgba(1,91,3,1) 0%, rgba(1,91,3,0.8618040966386554) 100%);
}
.regBtn:hover{
    color: white;
    box-shadow: 0px 0px 5px 1px hsl(121, 98%, 35%);
}
.hidden{
    display:none;
}

.info_meld {
    padding: 10px 25px 10px 25px;
    margin: 5px 10px 10px 10px;
    background: no-repeat 5px 11px;
    -moz-border-radius: 7px; -webkit-border-radius: 7px; border-radius: 7px;
    border: solid 1px;
    color: #FFF;
}
.info_green {
    background-color: #364208;
    background: -moz-linear-gradient(top, #364208, #2b3409);
    background: -webkit-gradient(linear, 0 top, 0 bottom, from(#364208), to(#2b3409));
    border-color: #47570b #364208 #364208 #364208;
}
.info_red {
    background-color: #530d0d;
    background: -moz-linear-gradient(top, #530d0d, #390c0c);
    background: -webkit-gradient(linear, 0 top, 0 bottom, from(#530d0d), to(#390c0c));
    border-color: #701212 #530d0d #530d0d #530d0d;
}
