#header-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: darkblue;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

a {
    text-decoration: none;
    outline: none;
    color: white;
}

form{
    margin-top: 80px;
}

body {
    background-color: darkslategray;
}

form {
    max-width: 600px;
    margin: 100px auto 0 auto;
    padding: 25px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.4);

}

body {
    padding-top: 80px;
    margin: 0;
}

label{
    color: white;
}

p{
    color: white;
}