/* Ensure background image loads properly on all major browsers */
body {
    font-family: Arial, sans-serif;
    text-align: center;
    background: url('background.jpeg') no-repeat center center fixed;
    background-size: cover;
    background-attachment: fixed;
    padding: 50px;
    color: white;

    /* Cross-browser compatibility */
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
}

.container {
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    margin: auto;
}

input, button {
    margin-top: 10px;
    padding: 10px;
    width: 80%;
    border-radius: 5px;
    border: none;
}

button {
    background: #FFD700;
    color: black;
    cursor: pointer;
    transition: 0.3s;
}

/* Button hover effect */
button:hover {
    background: #FFC107;
}

.legal {
    margin-top: 20px;
    font-size: 12px;
