.cshr-form-wrapper {
    max-width: 480px;
    margin: 0 auto;
    padding: 20px;
}

.cshr-form-title {
    margin: 0 0 20px 0;
    font-size: 20px;
    color: #333;
}

.cshr-form-group {
    margin-bottom: 18px;
}

.cshr-form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.cshr-required {
    color: #d63638;
}

.cshr-form-group input,
.cshr-form-group select {
    width: 100%;
    padding: 10px 14px;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    transition: border-color 0.2s;
}

.cshr-form-group input:focus,
.cshr-form-group select:focus {
    border-color: #0073aa;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.15);
}

.cshr-submit-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.cshr-submit-btn:hover {
    background-color: #005a87;
}

.cshr-submit-btn:disabled {
    background-color: #999;
    cursor: not-allowed;
}

.cshr-form-messages {
    margin-bottom: 16px;
}

.cshr-form-messages .cshr-success {
    padding: 12px 16px;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    border-radius: 4px;
    font-size: 14px;
}

.cshr-form-messages .cshr-error {
    padding: 12px 16px;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    border-radius: 4px;
    font-size: 14px;
}

.cshr-form-messages .cshr-error ul {
    margin: 4px 0 0 18px;
    padding: 0;
}

.cshr-loading {
    opacity: 0.6;
    pointer-events: none;
}
