/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #fff;
    color: #000;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #000;
}

p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #555;
}

input[type="password"] {
    padding: 10px;
    font-size: 1rem;
    margin-bottom: 20px;
    border: 1px solid #d4af37;
    border-radius: 5px;
    text-align: center;
}

button {
    padding: 10px 20px;
    font-size: 1rem;
    color: #fff;
    background: #d4af37;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

button:hover {
    background: #c2922b;
}

a {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1rem;
    color: #fff;
    background: #d4af37;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

footer {
    margin-top: 30px;
    font-size: 0.9rem;
    color: #000;
}
