/* Choose90 Pledge Form Styles */

.pledge-form-container {
    max-width: 700px;
    margin: 40px auto;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.pledge-intro {
    margin-bottom: 40px;
    padding: 30px;
    background: #f0f8ff;
    border-left: 5px solid #0066CC;
    border-radius: 10px;
}

.pledge-already-pledged {
    margin-bottom: 30px;
    padding: 30px;
    background: #e8f5e9;
    border-left: 5px solid #4caf50;
    border-radius: 10px;
}

.form-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section h3 {
    color: #0066CC;
    font-size: 24px;
    margin-bottom: 10px;
    font-family: 'Outfit', sans-serif;
}

.section-description {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="url"],
.form-group input[type="password"] {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #bbb;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.form-group input:focus {
    outline: none;
    border-color: #0066CC;
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.2), 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.field-help {
    display: block;
    margin-top: 5px;
    font-size: 13px;
    color: #666;
}

.pledge-commitment {
    background: #fff9e6;
    padding: 25px;
    border-radius: 10px;
    border: 2px dashed #E8B93E;
}

.pledge-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.pledge-checkbox input[type="checkbox"] {
    margin-top: 4px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    flex-shrink: 0;
}

.pledge-text {
    line-height: 1.7;
    color: #333;
}

.pledge-submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #0066CC 0%, #004A99 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 30px;
    font-family: 'Outfit', sans-serif;
}

.pledge-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
}

.pledge-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-footer {
    text-align: center;
    margin-top: 20px;
    color: #666;
    font-size: 14px;
}

.pledge-success {
    text-align: center;
    padding: 40px;
    background: #f0f8ff;
    border-radius: 20px;
    border: 3px solid #0066CC;
}

.success-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.success-content h2 {
    color: #0066CC;
    font-size: 32px;
    margin-bottom: 15px;
    font-family: 'Outfit', sans-serif;
}

.pledge-share-section {
    margin: 30px 0;
}

.success-cta-btn {
    display: inline-block;
    padding: 14px 30px;
    background: #E8B93E;
    color: #333;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    margin-top: 20px;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
}

.success-cta-btn:hover {
    background: #FFD966;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .pledge-form-container {
        padding: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

