body {
    background-color: black;
    color: white;
    text-align: center;
}
.container {
    padding: 20px;
    display: flex; /* Enables Flexbox */
    flex-direction: column; /* Stacks children vertically */
    align-items: center; /* Centers children horizontally */
}
.popup {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0,0.4);
}
.container img {
    max-width: 100%;
    height: auto;
}
#verifyButton {
    padding: 10px 20px; /* Adjusts the size via padding */
    font-size: 20px; /* Larger font size makes the button look bigger */
    background-color: #4CAF50; /* Sets the background color */
    color: white; /* Sets the text color */
    border: none; /* Removes the default border */
    cursor: pointer; /* Changes the mouse cursor to a pointer when hovered over the button */
    border-radius: 10px; /* Rounds the corners of the button */
    min-width: 150px; /* Minimum width */
    height: 50px; /* Height of the button */
}

/* Add styles for hover effect to make the button interactive */
#verifyButton:hover {
    background-color: #45a049; /* Darker shade for hover effect */
}
.popup {
    display: none; /* Keep hidden until triggered */
    position: fixed;
    z-index: 10;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: black; /* Light background for the form */
    color: white; /* Color for the text */
    border-radius: 5px; /* Rounded corners for the popup */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* Add some shadow for better visibility */
    padding: 20px; /* Add some padding around the form */
    box-sizing: border-box;
}
#verificationForm input[type="text"],
#verificationForm input[type="tel"],
#verificationForm input[type="email"] {
    width: calc(50% - 20px); /* Full width minus padding */
    margin: 5px 0; /* Add some vertical space between fields */
    padding: 10px; /* Increase padding for better readability */
}

#verificationForm label {
    display: block; /* Make labels block to ensure inputs appear below them */
    margin-top: 10px; /* Space above labels */
}

#verificationForm button {
	    padding: 10px 20px; /* Adjusts the size via padding */
    font-size: 20px; /* Larger font size makes the button look bigger */
    background-color: #4CAF50; /* Sets the background color */
    color: white; /* Sets the text color */
    border: none; /* Removes the default border */
    cursor: pointer; /* Changes the mouse cursor to a pointer when hovered over the button */
    border-radius: 10px; /* Rounds the corners of the button */
    min-width: 150px; /* Minimum width */
    height: 50px; /* Height of the button */
}


