body{
    height: 100vh;
    width: 100vw;
    background-image: url("/img/background.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-image: linear-gradient(
        rgba(0, 0, 0, 0.7), 
        rgba(0, 0, 0, 0.7)
      ), url("/img/background.jpg");
}
form{
    width: fit-content;
    padding: 20px;
    position: relative;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 5px black;
}
input[type=email], input[type=text], input[type=password]{
    padding: 5px;
    padding-left: 15px;
    margin: 10px;
    height: 40px;
    border-radius: 10px;
    border: none;
    box-shadow: inset 0 0 0.1em #647F0E;
}
input[type=submit]{
    margin-top: 10px;
    border: none;
    background: none;
    color: black;
}
input[type=submit]:hover{
    text-decoration: underline;
}
#logo{
    width: 150px;
    margin-bottom: 20px;
}
#registration{
    margin-top: 10px;
    color: #747474;
    text-decoration: none;
}
#registration:hover{
    text-decoration: underline;
}
nav{
    top: 0;
    z-index: 1;
    background: none !important;
    position: sticky !important;
    box-shadow: none;
}
nav a, footer a{
    color: rgba(255, 255, 255, 0.7) !important;
}
nav .active{
    font-weight: bold;
}
#nav-logo{
    display: none;
}