/* Custom styles for EA Visual Artists */

/* Partner Section Styles */
.brand-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.brand-placeholder h4 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #6c757d;
    text-align: center;
    line-height: 1.2;
}

.brand-box:hover .brand-placeholder {
    background: #e9ecef;
    border-color: #adb5bd;
}

.brand-box:hover .brand-placeholder h4 {
    color: #495057;
}

/* Petition Form Checkbox Styles */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    cursor: pointer;
    line-height: 1.4;
    margin-bottom: 8px;
    transition: all 0.2s ease;
}

.checkbox-label:hover {
    color: #495057;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    padding: 0;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 2px solid #dee2e6;
    border-radius: 4px;
    background-color: #fff;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:focus {
    outline: none;
    border-color: #e23a52;
    box-shadow: 0 0 0 3px rgba(226, 58, 82, 0.1);
}

.checkbox-label input[type="checkbox"]:checked {
    background-color: #e23a52;
    border-color: #e23a52;
}

.checkbox-label input[type="checkbox"]:checked::before {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
}

.checkbox-label input[type="checkbox"]:hover {
    border-color: #adb5bd;
}

.checkbox-label input[type="checkbox"]:checked:hover {
    background-color: #c92940;
    border-color: #c92940;
}

/* Custom checkmark styling for better compatibility */
.checkmark {
    display: none; /* Hide the default span checkmark since we're using ::before */
}

/* Form Options Container */
.form-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 15px 0;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 6px;
    border: 1px solid #e9ecef;
}

.form-options .checkbox-label {
    margin-bottom: 0;
    padding: 4px 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .brand-placeholder {
        height: 60px;
    }
    
    .brand-placeholder h4 {
        font-size: 12px;
    }
    
    .checkbox-label {
        font-size: 13px;
        gap: 10px;
    }
    
    .checkbox-label input[type="checkbox"] {
        width: 16px;
        height: 16px;
    }
    
    .form-options {
        padding: 12px;
    }
} 