
body {
    margin: 0;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('background.gif') no-repeat center center fixed;
    background-size: cover;
    color: #EDEDED; /* Bone-white text */
    font-family: Arial, sans-serif;
}

.overlay {
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 200px;
    border-radius: 100px;
}

h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

input {
    width: 80%;
    padding: 10px;
    margin-bottom: 10px;
    font-size: 1rem;
    border: 2px solid #ccc;
    border-radius: 5px;
    background-color: rgba(30, 30, 30, 0.8); /* Slightly less black */
    color: #EDEDED;
}

button {
    padding: 10px 20px;
    border: none;
    background-color: #555;
    color: #EDEDED;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background-color: #777;
}
