/* General Body Styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f7fc;
    margin: 0;
    padding: 0;
}

/* Form Wrapper */
.form-wrapper {
    width: 100%;
    max-width: 500px;
    margin: 50px auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

h2 {
    text-align: center;
    font-size: 24px;
    color: #333;
    margin-bottom: 30px;
}

/* Form Elements */
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Labels */
label {
    font-size: 14px;
    color: #555;
}

/* Input and Select Styles */
input[type="text"],
input[type="password"],
select {
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
    box-sizing: border-box;
}

/* Button Styles */
button {
    background-color: #4CAF50;
    color: #fff;
    padding: 12px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button2 {
    background-color: #4CAF50;
    color: #fff;
    padding: 6px;
    font-size: 12px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
button:hover {
    background-color: #45a049;
}

/* CAPTCHA Section */
#captcha {
    font-weight: bold;
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
}

input[name="captcha_input"] {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 20px;
}

/* Link Styles */
p {
    text-align: center;
    font-size: 14px;
    color: #777;
}

p a {
    color: #4CAF50;
    text-decoration: none;
}

p a:hover {
    text-decoration: underline;
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
    .form-wrapper {
        margin: 20px;
        padding: 15px;
    }

    h2 {
        font-size: 20px;
    }

    label {
        font-size: 12px;
    }

    input[type="text"],
    input[type="password"],
    select,
    button {
        font-size: 14px;
    }
}
