body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: url('/img/bg.jpg') repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    color: #e0ac69;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    background-color: rgba(58, 58, 58, 0.8);
    text-align: center;
    padding: 20px;
}

.logo {
    width: 200px;
}

nav {
    display: flex;
    justify-content: center;
    background-color: rgba(42, 42, 42, 0.8);
    padding: 10px;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #e0ac69;
    text-decoration: none;
    font-size: 18px;
}

main {
    flex: 1;
    padding: 20px;
    text-align: center;
}

section {
    background: rgba(58, 58, 58, 0.8);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 40px;
    display: inline-block;
    max-width: 600px;
    width: 90%;
}

form {
    background: rgba(42, 42, 42, 0.9);
    padding: 20px;
    border-radius: 10px;
}

input, button {
    display: block;
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
    border: none;
    border-radius: 5px;
}

input {
    background: #2a2a2a;
    color: white;
}

button {
    background-color: #e0ac69;
    color: black;
    cursor: pointer;
}

footer {
    background-color: rgba(42, 42, 42, 0.8);
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
}
