/* basic-form.css */

.basic-form-wrapper {
    max-width: 800px;
    margin: 20px 0;
    padding: 20px;
    background: #e9e9e8; /* light grey background */
    border-radius: 6px;
    font-family: system-ui, sans-serif;
    color: #2c3d4a; /* dark blue-grey text */
    box-sizing: border-box;
}

.basic-form-wrapper p label {
    color: #2c3d4a;
    font-weight:600;
    font-size:12px;
}

/* Messages */
.basic-form-msg {
    margin-bottom: 12px;
    padding: 10px;
    border-radius: 4px;
    font-size: 15px;
}

.basic-form-msg.success {
    background: #effbff; /* very light sky blue */
    border: 1px solid #14b3e2; /* IAM blue */
    color: #2c3d4a;
}

.basic-form-msg.error {
    background: #fff0f0;
    border: 1px solid #e55;
    color: #000000;
}

/* Fields */
.basic-form-wrapper input[type="text"],
.basic-form-wrapper input[type="email"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 14px;
    font-size: 15px;
    background: #ffffff; /* white */
    color: #2c3d4a;       /* dark blue-grey */
    box-sizing: border-box;
}

.basic-form-wrapper input:focus {
    outline: none;
    border-color: #14b3e2; /* IAM blue */
    box-shadow: 0 0 0 2px #effbff; /* sky blue focus glow */
}

/* Button */
.basic-form-wrapper button {
    display: inline-block;
    background: #007cb0; /* offset blue */
    color: #ffffff;
    border: none;
    padding: 10px 16px;
    font-size: 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s ease;
}


.basic-form-wrapper button:hover {
    background: #14b3e2; /* IAM blue */
}

/* Recaptcha alignment */
.basic-form-wrapper .g-recaptcha {
    margin-bottom: 12px;
}