/* AWS SES Contact Form — minimal, theme-friendly defaults */

.aws-ses-contact-form {
    max-width: 600px;
}

.aws-ses-cf-field {
    margin-bottom: 16px;
}

.aws-ses-cf-field label {
    display: block;
    margin-bottom: 4px;
    font-weight: 600;
}

.aws-ses-cf-field input[type="text"],
.aws-ses-cf-field input[type="email"],
.aws-ses-cf-field input[type="tel"],
.aws-ses-cf-field textarea {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #8c8f94;
    border-radius: 4px;
    font-size: inherit;
    font-family: inherit;
    box-sizing: border-box;
}

.aws-ses-cf-field textarea {
    min-height: 140px;
    resize: vertical;
}

.aws-ses-cf-field .aws-ses-cf-optional {
    font-weight: 400;
    font-size: 0.85em;
    color: #646970;
}

/* Honeypot — visually hidden but not display:none (bots detect that) */
.aws-ses-cf-honeypot {
    position: absolute;
    left: -9999px;
    height: 0;
    overflow: hidden;
    opacity: 0;
}

/* Submit button — inherits theme styling where possible */
.aws-ses-cf-submit {
    padding: 10px 24px;
    font-size: inherit;
    cursor: pointer;
}

.aws-ses-cf-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Status messages */
.aws-ses-cf-status {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.5;
}

.aws-ses-cf-status:empty {
    display: none;
}

.aws-ses-cf-status-success {
    background: #ecf7ed;
    border: 1px solid #46b450;
    color: #155724;
}

.aws-ses-cf-status-error {
    background: #fbeaea;
    border: 1px solid #dc3232;
    color: #721c24;
}
