/**
 * SI Case Study Analysis Pro - Submission Form Styles
 * 
 * @package SI_CSAP
 * @since 1.0.0
 */

.si-cap-submission-form {
    max-width: 600px;
    margin: 2rem auto;
    background: #fff;
    padding: 2rem;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.si-cap-form-group {
    margin-bottom: 1.5rem;
}

.si-cap-form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.si-cap-form-group input,
.si-cap-form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

.si-cap-submit-btn {
    background: #0073aa;
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
}

.si-cap-submit-btn:hover {
    background: #005177;
}

.si-cap-success-message {
    background: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 4px;
    border: 1px solid #c3e6cb;
    text-align: center;
}
