@import url('/public/fonts/Haboro_Soft_Norm_Regular/fontloader.css');
body, html {
    background: rgba(49, 33, 84);
    font-family: "Haboro Soft Norm Regular";
    color: white;
}
div#logo-background img {
    position: fixed;
    bottom: -15rem;
    left: -15rem;
    width: 40rem;
    z-index: -1;
    opacity: 0.6;
}
div#flex-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
div#generic-wrapper {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    align-items: center;
}

img#logo {
    width: inherit;
}

div#logo-wrapper {
    width: 23rem;
    margin-left: auto;
    margin-right: auto;
}
div#form {
    width: 23rem;
    margin-left: auto;
    margin-right: auto;
}
div#form form {
    padding: 2rem;
    display: block;
}
div#form form label,input {
    margin: 0.4rem 0;
    width: 100%;
}

#remember_me {
    width: auto;
}

#Button {
    width: 100%;
    background-color: rgb(118,183,42);
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 3px;
    color: white;
    background-image: linear-gradient(to right, rgb(118,183,42) 0%, rgb(0,162,94) 51%, rgb(118,183,42) 100%);
    transition: 0.5s;
    background-size: 200% auto;
    min-width: 7rem;
}
#Button:hover {
    background-position: right center;
}
input[type=text], input[type=password] {
    -webkit-appearance: none;
    background-color: white;
    border-radius: 3px;
    border: 1px solid darkgray;
    outline: none;
    -webkit-box-shadow: inset 0 0 0px 9999px white;
    box-shadow: white;
    padding: 0.5rem;
    display: inline-block;
    box-sizing: border-box;
}
#resetFlex {
    display: flex;
    justify-content: center;
}
#ResetButton {
    border: none;
    border-radius: 3px;
    background-color: transparent;
    color: lightgray;
    cursor: pointer;
    transition: 0.5s;
}
#ResetButton:hover {
    color: rgb(118,183,42);
}
#errormsg {
    font-size: 14px;
    color: orange;
}
