* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

header {
    background: #333;
    height: 10vh;
    padding: 10px 20px;
    text-align: center;
}

main {
    background: linear-gradient(180deg, #000000, #2b0f3f);
    line-height: 1.6;
    height: 85vh;
}

footer {
    background: #333;
    color: #fff;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px 0;
    position: fixed;
    height: 5vh;
    width: 100%;
}

#WebsiteTitel {
    font-size: 40px;
    font-weight: bolder;
    color: #ffffff;
}

#navHeader {
    justify-content: center;
}


nav ul {
    display: flex;          
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
}

nav a {
    text-decoration: none;
    color: #ffffff;
    font-size: 16px;
}

#LoginWrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
}

#LoginPanel {
    width: 350px;
    padding: 30px;
    background: linear-gradient(135deg, #ebd9ff, #baa9ff);
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

#LoginTitle {
    margin: 0;
    font-size: 24px;
    font-weight: bold;
    color: #3a1c5a;
}

#LoginForm {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 15px;
}

#LoginForm input {
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 16px;
    width: 100%;
    align-items: center;
}

#LoginButton {
    padding: 10px 30px;      
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    background: #5f27c7;
    color: white;
    cursor: pointer;
    transition: background 0.2s ease;
    align-self: center;
}

#LoginButton:hover {
    background: #42198f;
}

#ForgotPassword {
    font-size: 14px;
    color: #3a1c5a;
    text-decoration: none;
}

#ForgotPassword:hover {
    text-decoration: underline;
}

#LoginOptions {
    padding: 20px 30px;
    height: 40%;           
    width: 30%;
    background: linear-gradient(135deg, #ebd9ff, #baa9ff);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);

    display: flex;
    flex-direction: column;
    justify-content: space-between; 
    align-items: center;
}

#LoginText {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}

#LoginButton {
    padding: 10px 20px;      
    width: 80%;             
    font-size: 18px;         
    font-weight: bold;       
    border: none;
    border-radius: 6px;
    background: #5f27c7;
    color: white;
    cursor: pointer;
    transition: background 0.2s ease;
}

#LoginButton:hover {
    background: #42198f;
}


