/**
 * Manex Mail public styles
 */

/* Form container */
.manex-mail-form-container {
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    background-color: #f8f8f8;
    border-radius: 5px;
    box-sizing: border-box;
}

/* 2-column layout */
.manex-mail-form-row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.manex-mail-form-col {
    padding-left: 15px;
    padding-right: 15px;
    flex: 0 0 50%;
    max-width: 50%;
    box-sizing: border-box;
}

/* Form fields */
.manex-mail-form-field {
    margin-bottom: 20px;
}

.manex-mail-form-field label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.manex-mail-form-field .required {
    color: #e32;
}

.manex-mail-form-field input[type="text"],
.manex-mail-form-field input[type="email"],
.manex-mail-form-field select,
.manex-mail-form-field textarea {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px;
}

.manex-mail-form-field textarea {
    resize: vertical;
    min-height: 60px;
}

/* Submit button */
.manex-mail-submit {
    background-color: #0073aa !important;
    color: white !important;
    border: none !important;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.manex-mail-submit:hover {
    background-color: #005177 !important;
}

/* Response messages */
.manex-mail-response {
    margin-bottom: 20px;
    padding: 10px 15px;
    border-radius: 4px;
}

.manex-mail-response.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.manex-mail-response.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Error message */
.manex-mail-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    padding: 10px 15px;
    border-radius: 4px;
    margin-bottom: 20px;
}

/* Responsive adjustments */
@media screen and (max-width: 767px) {
    /* Stack form columns on mobile */
    .manex-mail-form-col {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .manex-mail-form-container {
        padding: 15px;
    }
}
