/* Worker Auth Pages Custom Styles */
body {
    background: url('../img/IMG_9722.JPG') no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
    font-family: 'Open Sans', sans-serif;
}
.container {
    max-width: 400px;
    margin: 60px auto;
    background: rgba(255,255,255,0.95);
    border-radius: 12px;
    box-shadow: 0 0 30px rgba(0,0,0,0.12);
    padding: 40px 30px 30px 30px;
}
h2 {
    text-align: center;
    color: #d4a762;
    margin-bottom: 30px;
    font-family: 'Playball', cursive;
}
form label {
    display: block;
    margin-bottom: 8px;
    color: #332929;
    font-weight: 600;
}
form input[type="text"],
form input[type="password"] {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 18px;
    border: 1px solid #d4a762;
    border-radius: 6px;
    background: #f9f6f2;
    font-size: 16px;
}
button[type="submit"] {
    width: 100%;
    background: #d4a762;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}
button[type="submit"]:hover {
    background: #332929;
    color: #d4a762;
}
p, a {
    text-align: center;
    color: #332929;
    font-size: 15px;
}
nav ul {
    display: flex;
    justify-content: space-around;
    padding: 0;
    margin: 30px 0 20px 0;
    list-style: none;
}
nav ul li a {
    color: #d4a762;
    font-weight: 700;
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}
nav ul li a:hover, nav ul li a.active {
    background: #d4a762;
    color: #fff;
}
section {
    background: #f9f6f2;
    border-radius: 8px;
    margin-bottom: 18px;
    padding: 18px 14px;
    box-shadow: 0 0 10px rgba(0,0,0,0.04);
}

.logout-link {
    display: block;
    text-align: center;
    margin-top: 18px;
    color: #d4a762;
    font-weight: 700;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.2s;
}
.logout-link:hover {
    color: #332929;
}
@media (max-width: 500px) {
    .container {
        padding: 20px 8px 18px 8px;
    }
    nav ul {
        flex-direction: column;
        gap: 10px;
    }
}
