@import url('https://fonts.googleapis.com/css2?family=Zilla+Slab:wght@700&display=swap');

body {
    background: url('background.jpg') no-repeat center center fixed;
    background-size: cover;
    font-family: 'Zilla Slab', serif;
    color: #fff;
    margin: 0;
    padding: 0;
}

.container {
    text-align: center;
    padding: 50px;
}

.header {
    background: rgba(0, 0, 0, 0.8);
    padding: 8px;
    border-bottom: 3px solid #d4af37;
    position: fixed;
    bottom: 1px;
    right: 5px;
    border-radius: 10px;
}

.header h1 {
    font-size: 25px;
    color: #d4af37;
    text-shadow: 2px 2px 5px #000;
}

.content {
    margin-top: 50px;
}

.login-form {
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 10px;
    display: inline-block;
}

.login-form h2 {
    color: #ffc508;
    margin-bottom: 20px;
}

.login-form input {
    width: 90%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
}

.login-form button {
    background: #d4af37;
    color: #000;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.login-form button:hover {
    background: #b8860b;
}

.login-form a {
    color: #ffca00;
    text-decoration: none;
}

.login-form a:hover {
    text-decoration: underline;
}
