body {
    font-family: Arial, sans-serif;
    background: url('http://www.pullmyfinger.click/images/BackgroundPage.jpg') no-repeat center center fixed;
    background-size: cover;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

/* Fixed Header Styling */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent background */
    color: white;
    padding: 10px 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    z-index: 1000; /* Ensures the header is above all other elements */
}

/* Push the page content below the fixed header */
body {
    padding-top: 60px; /* Adjust to match the header height */
}

.form-container {
    background: rgba(0, 0, 0, 0.584);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.5);
    text-align: center;
    width: 400px;
}

h1 {
    margin-bottom: 20px;
    color: #ff5722;
}

.instructions {
    text-align: left;
    margin-bottom: 20px;
    font-size: 12px; /* Adjusted font size */
    line-height: 1.6;
    color: #ffcccb; /* Softer color for readability */
}

.instructions ul {
    text-align: left;
    margin: 10px 0 0;
    padding: 0 0 0 20px;
}

input {
    width: 100%;
    margin: 10px 0;
    padding: 10px;
    border-radius: 5px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 16px;
}

input::placeholder {
    color: #ccc;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #ff5722;
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
}

button:hover {
    background-color: #e64a19;
}

.alert {
    margin-top: 15px;
    padding: 10px;
    background: rgba(244, 67, 54, 0.8);
    border-radius: 5px;
    color: white;
}

.g-recaptcha {
    margin: 20px 0;
}
