body {
    font-family: Arial, sans-serif;
    background-color: #fefefe;
    color: #7A7A7A;
    padding: 20px;
}

.container {
    width: 90%;
    margin: auto;
    max-width: 600px;
    text-align: left; /* Aligning text to the left for a cleaner look */
    padding: 20px;
    border: 1px solid #e6e6e6;
    box-shadow: 0px 0px 10px #e0e0e0;
    background-color: #ffffff;
}

h1 {
    text-align: center;
    color: #6EC1E4;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    color: #735ca0;
    font-size: 16px;
    margin-bottom: 5px;
}

input[type="email"], input[type="text"] {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 2px solid #6EC1E4; /* Visible border */
    border-radius: 5px;
}

input[type="email"]:focus, input[type="text"]:focus {
    border-color: #735ca0;
    outline: none;
}

#captchaImage {
    margin: 10px 0;
    padding: 5px;
    border: 2px solid #6EC1E4;
    display: inline-block;
    cursor: pointer;
}

button {
    width: 100%;
    padding: 12px 20px;
    background-color: #735ca0;
    color: #ffffff;
    border: 1px solid #6EC1E4; /* Defined border */
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #6EC1E4;
    border-color: #735ca0;
}

#response {
    margin-top: 20px;
    color: #735ca0;
    text-align: center; /* Centering response message */
}

* {
    box-sizing: border-box; /* Ensures consistent box-sizing across all elements */
}
