body {
    font-family: Arial, sans-serif; /* Clean, standard font */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background-color: #f4f7f6; /* Light background */
    color: #333;
    text-align: center;
}

.container {
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
}

.logo {
    width: 150px; /* Adjust size as needed */
    margin-bottom: 20px;
}

h1 {
    color: #1a73e8; /* Google-like blue for a tech feel */
    font-weight: 600;
    margin-bottom: 10px;
}

p {
    margin-bottom: 25px;
    font-size: 16px;
    color: #666;
}

/* Style the Submit Button */
.submit-button {
    background-color: #1a73e8;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin-top: 20px; /* Space above the button */
    width: 100%; /* Full width for better mobile experience */
}

.submit-button:hover {
    background-color: #0b5acb; /* Darker blue on hover */
}

/* Style the CAPTCHA box to ensure it stands out */
.captcha-box {
    display: inline-block; /* Centers the captcha widget */
    margin-top: 15px;
}